forked from modern-agile-team/im-sang-tae
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
54 lines (54 loc) · 1.58 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
50
51
52
53
54
{
"name": "im-sang-tae",
"version": "0.5.2",
"description": "state management library that are not dependent on the framework",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"private": false,
"type": "module",
"scripts": {
"types": "tsc --emitDeclarationOnly",
"build": "npm run types && rollup -c",
"start": "rollup -c -w",
"test": "jest",
"start:localTest": "cd src/test && npm run start",
"build:localTest": "cd src/test && npm run build",
"build:examples": "for d in ./examples/*/ ; do (cd \"$d\" && npm run build); done",
"install:examples": "for d in ./examples/*/ ; do (cd \"$d\" && npm install); done",
"update:examples": "for d in ./examples/*/ ; do (cd \"$d\" && npm update); done"
},
"repository": {
"type": "git",
"url": "git+https://github.com/modern-agile-team/im-sang-tae.git"
},
"keywords": [
"state",
"global",
"manager",
"javascript",
"frontend"
],
"author": "",
"license": "MIT",
"bugs": {
"url": "https://github.com/modern-agile-team/im-sang-tae/issues",
"email": "[email protected]"
},
"homepage": "https://github.com/modern-agile-team/im-sang-tae#readme",
"dependencies": {
"@types/node": "^20.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.0.4"
},
"devDependencies": {
"@rollup/plugin-typescript": "^11.1.1",
"@types/jest": "^29.5.1",
"jest": "^29.5.0",
"rollup": "^3.23.0",
"rollup-plugin-delete": "^2.0.0",
"@rollup/plugin-terser": "^0.4.3",
"rollup-plugin-dts": "^5.3.0",
"ts-jest": "^29.1.0",
"tslib": "^2.5.2"
}
}