-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 950 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
37
38
39
{
"name": "croact",
"version": "1.0.4",
"description": "Simple React for compatible use",
"main": "./dist/croact.cjs.js",
"module": "./dist/croact.esm.js",
"sideEffects": false,
"types": "declaration/index.d.ts",
"scripts": {
"start": "rollup -c -w",
"build": "rollup -c && tsc -p tsconfig.declaration.json && print-sizes ./dist"
},
"repository": {
"type": "git",
"url": "git+https://github.com/daybrush/croact.git"
},
"author": "Daybrush",
"license": "MIT",
"keywords": [
"react",
"compat",
"croact"
],
"bugs": {
"url": "https://github.com/daybrush/croact/issues"
},
"homepage": "https://github.com/daybrush/croact#readme",
"devDependencies": {
"@daybrush/builder": "^0.2.4",
"print-sizes": "^0.2.0",
"tslib": "^2.3.1",
"tslint": "^5.20.1",
"typescript": "^4"
},
"dependencies": {
"@daybrush/utils": "^1.13.0",
"@egjs/list-differ": "^1.0.0"
}
}