-
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
49 lines (49 loc) · 1.13 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
45
46
47
48
49
{
"name": "nano-theme",
"version": "1.0.0",
"description": "",
"author": {
"name": "streamich",
"url": "https://github.com/streamich"
},
"homepage": "https://github.com/streamich/nano-theme",
"repository": "streamich/nano-theme",
"license": "Apache-2.0",
"main": "lib/index.js",
"types": "lib/index.d.ts",
"typings": "lib/index.d.ts",
"files": [
"lib/",
"README.md",
"LICENSE"
],
"scripts": {
"prettier": "prettier --ignore-path .gitignore --write 'src/**/*.{ts,tsx,js,jsx}'",
"prettier:diff": "prettier -l 'src/**/*.{ts,tsx,js,jsx}'",
"tslint": "tslint 'src/**/*.{js,jsx,ts,tsx}' -t verbose",
"clean": "rimraf lib",
"build": "tsc",
"test": "echo \"No tests yet.\""
},
"dependencies": {
"nano-css": "^5.6.2",
"react-use": "^17.4.0",
"thingies": "^2.0.0"
},
"peerDependencies": {
"react": "*"
},
"devDependencies": {
"@types/react": "^18.2.37",
"prettier": "^3.1.0",
"pretty-quick": "^3.1.3",
"rimraf": "^5.0.5",
"ts-node": "^10.9.1",
"typescript": "^5.3.2"
},
"config": {
"commitizen": {
"path": "git-cz"
}
}
}