-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
49 lines (49 loc) · 1.32 KB
/
package.json
File metadata and controls
49 lines (49 loc) · 1.32 KB
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
{
"name": "@do-while-for-each/tree-cell-react",
"description": "React.js tools for tree-cell",
"version": "18.0.5",
"types": "./dist/types/index.d.ts",
"exports": {
".": {
"require": "./dist/cjs/index.js",
"import": "./dist/cjs/index.js",
"types": "./dist/types/index.d.ts"
}
},
"homepage": "https://github.com/dwfe/tree-cell-react",
"bugs": "https://github.com/dwfe/tree-cell-react/issues",
"repository": {
"type": "git",
"url": "git@github.com:dwfe/tree-cell-react.git"
},
"keywords": [],
"author": "Do|While|For|Each",
"license": "MIT",
"files": [
"dist",
"LICENSE",
"README.md"
],
"peerDependencies": {
"react": "18.x.x"
},
"dependencies": {
"@do-while-for-each/common": "3.x.x",
"@do-while-for-each/tree-cell": "1.x.x"
},
"devDependencies": {
"@do-while-for-each/tsconfig": "1.x.x",
"@do-while-for-each/react-cmmn-packs": "18.x.x"
},
"scripts": {
"clean": "dwfeFs cleanDir . --fileNames=\"dist;node_modules;package-lock.json\"",
"bootstrap": "npm run clean && npm install",
"build": "dwfeFs rmForce dist --noConfirm && tsc -b src/tsconfig.json",
"version": "npm run build",
"deploy": "npm version patch && npm publish",
"tgz": "npm run build && npm pack"
},
"publishConfig": {
"access": "public"
}
}