-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
40 lines (40 loc) · 939 Bytes
/
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
{
"name": "lightwindcss",
"version": "0.1.0",
"description": "Write light CSS in the right way.",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"sideEffects": false,
"bin": "dist/cli/index.js",
"scripts": {
"build": "tsc",
"watch": "tsc --watch",
"test": "echo \"Error: no test specified\" && exit 1"
},
"keywords": [],
"author": "uhyo <[email protected]>",
"license": "MIT",
"files": [
"dist",
"src",
"babel.js"
],
"devDependencies": {
"@types/babel__traverse": "^7.11.0",
"@types/md5": "^2.2.1",
"@types/react": "^17.0.0",
"@types/stylis": "^4.0.0",
"@types/yargs": "^15.0.12",
"prettier": "^2.2.1",
"typescript": "^4.2.0-beta"
},
"dependencies": {
"@babel/parser": "^7.12.11",
"@babel/traverse": "^7.12.12",
"@babel/types": "^7.12.12",
"fast-glob": "^3.2.5",
"md5": "^2.3.0",
"stylis": "^4.0.6",
"yargs": "^16.2.0"
}
}