-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
36 lines (36 loc) · 966 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
{
"name": "kyoka",
"packageManager": "[email protected]",
"dependencies": {
"react": "^18.1.0"
},
"devDependencies": {
"@types/react": "^18.0.12",
"typescript": "^4.7.3"
},
"description": "Kyoka is a minimalistic state management library, created for React.",
"version": "0.1.0",
"main": "./cjs/index.js",
"module": "./esm/index.js",
"types": "./esm/index.d.ts",
"repository": {
"type": "git",
"url": "git+https://github.com/k0michi/kyoka.git"
},
"author": "Komichi <[email protected]> (https://koyomiji.com/)",
"license": "MIT",
"bugs": {
"url": "https://github.com/k0michi/kyoka/issues"
},
"homepage": "https://github.com/k0michi/kyoka#readme",
"scripts": {
"build:esm": "tsc --module esnext --outDir esm --declaration true",
"build:cjs": "tsc --module commonjs --outDir cjs",
"build": "yarn build:esm && yarn build:cjs",
"clean": "rm -rf cjs esm"
},
"files": [
"cjs",
"esm"
]
}