-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
37 lines (37 loc) · 1.04 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
{
"private": true,
"name": "@-ft/mode-react",
"version": "0.1.3",
"description": "React wrapper for theme mode manager",
"types": "./index.d.ts",
"main": "./index.js",
"scripts": {
"build": "rimraf compile dist && tsc -p tsconfig.compile.json && rollup -c && dts-bundle-generator --no-banner -o dist/index.d.ts compile/index.d.ts",
"publish": "npm run build && package-json-minifier && cpy README.md dist && cd dist && npm publish"
},
"author": "Juyeong Maing <[email protected]>",
"repository": {
"type": "git",
"url": "https://github.com/42ts/-ft-mode-react.git"
},
"license": "MIT",
"peerDependencies": {
"@-ft/mode": "^0.1.0",
"react": "^18.2.0"
},
"peerDependenciesMeta": {
"@-ft/mode": {
"optional": true
}
},
"devDependencies": {
"@rollup/plugin-terser": "^0.4.3",
"@types/react": "^18.2.21",
"cpy-cli": "^5.0.0",
"dts-bundle-generator": "^8.0.1",
"package.json-minifier": "^0.0.4",
"rimraf": "^5.0.1",
"rollup": "^3.28.1",
"typescript": "^5.2.2"
}
}