-
Notifications
You must be signed in to change notification settings - Fork 1
/
package.json
94 lines (94 loc) · 2.54 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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
{
"name": "@tag0/kveditor",
"version": "1.0.1",
"description": "React key/value UI component",
"repository": {
"type": "git",
"url": "git+https://github.com/TagZero/kveditor.git"
},
"keywords": [
"react",
"component",
"library",
"key/value",
"key-value",
"editor"
],
"license": "MIT",
"types": "dist/index.d.ts",
"main": "dist/cjs/index.js",
"module": "dist/es/index.js",
"browser": "dist/umd/index.js",
"files": [
"dist",
"package.json",
"LICENSE.md",
"README.md"
],
"scripts": {
"clean": "rimraf dist",
"lint": "eslint \"src/**/*.{js,ts,tsx}\"",
"test": "jest --config=jest.config.js",
"build": "yarn clean && rollup -c rollup.config.js",
"build:prod": "yarn clean && NODE_ENV=production rollup -c rollup.config.js",
"build:example": "yarn clean && rollup -c rollup.examples.config.js",
"start": "yarn build:example && serve dist",
"prepublishOnly": "yarn build",
"watch": "npm-watch"
},
"devDependencies": {
"@rollup/plugin-commonjs": "^17.0.0",
"@rollup/plugin-html": "^0.2.0",
"@rollup/plugin-node-resolve": "^10.0.0",
"@rollup/plugin-replace": "^2.3.4",
"@testing-library/jest-dom": "^5.11.6",
"@testing-library/react": "^11.1.2",
"@types/jest": "^26.0.15",
"@types/react": "^16.9.56",
"@types/react-dom": "^16.9.9",
"@typescript-eslint/eslint-plugin": "^4.7.0",
"@typescript-eslint/parser": "^4.7.0",
"@wessberg/rollup-plugin-ts": "^1.3.8",
"babel-eslint": "^10.1.0",
"canvas": "^2.6.1",
"eslint": "^7.13.0",
"eslint-config-prettier": "^6.15.0",
"eslint-plugin-jest": "^24.1.3",
"eslint-plugin-jsx-a11y": "^6.4.1",
"eslint-plugin-prettier": "^3.1.4",
"eslint-plugin-react": "^7.21.5",
"eslint-plugin-react-hooks": "^4.2.0",
"jest": "^26.6.3",
"node-sass": "^4.14.1",
"npm-watch": "^0.7.0",
"prettier": "^2.1.2",
"react": "^17.0.1",
"react-dom": "^17.0.1",
"react-test-renderer": "^17.0.1",
"rollup": "^2.33.2",
"rollup-plugin-copy": "^3.3.0",
"rollup-plugin-filesize": "^9.1.0",
"rollup-plugin-postcss": "^3.1.8",
"rollup-plugin-terser": "^7.0.2",
"serve": "^11.3.2",
"ts-jest": "^26.4.4",
"tslib": "^2.0.3",
"typescript": "^4.0.5"
},
"peerDependencies": {
"react": ">=16.x",
"react-dom": ">=16.x"
},
"dependencies": {
"@tag0/use-text-width": "^1.0.0",
"nanoid": "^3.1.20"
},
"watch": {
"start": {
"extensions": "scss,css,ts,tsx",
"patterns": [
"src"
]
}
}
}