-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
78 lines (78 loc) · 2 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
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
{
"name": "@arborjs/react",
"version": "0.0.1-alpha.93",
"sideEffects": false,
"description": "A fully typed, minimalistic proxy-based state tree library with very little boilerplate for React apps.",
"keywords": [
"arbor",
"react",
"state",
"store",
"typescript",
"tree"
],
"repository": {
"url": "https://github.com/drborges/arbor",
"type": "git"
},
"bugs": {
"url": "https://github.com/drborges/arbor/issues",
"email": "[email protected]"
},
"author": {
"email": "[email protected]",
"name": "Diego Borges",
"url": "https://github.com/drborges"
},
"main": "./dist/index.cjs.js",
"module": "./dist/index.esm.js",
"types": "./dist/index.d.ts",
"type": "module",
"exports": {
".": {
"require": "./dist/index.cjs.js",
"import": "./dist/index.esm.js",
"default": "./dist/index.esm.js"
}
},
"prettier": "@arborjs/config-prettier",
"license": "MIT",
"files": [
"./dist",
"./README",
"../../LICENSE"
],
"publishConfig": {
"access": "public"
},
"devDependencies": {
"@arborjs/store": "0.0.1-alpha.93",
"@testing-library/react": "14.0.0",
"@types/react": "18.2.31",
"@types/react-dom": "18.2.14",
"esbuild": "^0.17.19",
"eslint": "^8.40.0",
"eslint-plugin-react": "^7.32.2",
"eslint-plugin-react-hooks": "^4.6.0",
"jsdom": "^24.1.0",
"prettier": "^2.8.8",
"react": "18.2.0",
"react-test-renderer": "18.2.0",
"typescript": "^5.0.4",
"vitest": "^1.6.0"
},
"scripts": {
"prettier": "prettier -w . ",
"clean": "rm -rf dist",
"lint": "yarn eslint . --ext .js,.jsx,.ts,.tsx",
"test": "vitest run",
"dev": "vitest -w",
"build": "yarn clean && NODE_ENV=production node ../../tools/build.js && yarn tsc",
"build:dev": "yarn clean && NODE_ENV=development node ../../tools/build.js && yarn tsc"
},
"peerDependencies": {
"@arborjs/store": "0.0.1-alpha.93",
"react": "18.2.0",
"react-dom": "18.2.14"
}
}