-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
44 lines (44 loc) · 1.33 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "styletakeout.macro",
"version": "2.0.0",
"description": "Take CSS out of JS at compile time",
"keywords": [
"css",
"styled-components",
"babel-plugin-macros"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://gitlab.com/nthm/styletakeout"
},
"author": "Gen Hames",
"main": "styletakeout.macro.js",
"types": "index.d.ts",
"scripts": {
"build": "mkdir -p publish && cp *.ts package.json readme.md publish/ && npm run babel",
"babel": "babel styletakeout.macro.ts --out-dir publish --extensions .ts",
"sandbox": "babel sandbox --config-file ./sandbox/.babelrc.json --out-dir sandbox/build --extensions .ts"
},
"dependencies": {
"babel-plugin-macros": "^2.8.0",
"common-tags": "^1.8.0",
"cssbeautify": "^0.3.1",
"stylis": "^4.0.2"
},
"devDependencies": {
"@babel/cli": "^7.11.6",
"@babel/core": "^7.11.6",
"@babel/plugin-transform-modules-commonjs": "^7.10.4",
"@babel/plugin-transform-typescript": "^7.11.0",
"@types/babel-plugin-macros": "^2.8.2",
"@types/common-tags": "^1.8.0",
"@types/cssbeautify": "^0.3.1",
"@types/node": "^14.10.1",
"@types/stylis": "^4.0.0",
"@typescript-eslint/eslint-plugin": "^4.1.0",
"@typescript-eslint/parser": "^4.1.0",
"eslint": "^7.9.0",
"typescript": "^4.0.2"
}
}