-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.93 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.93 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "file-cell",
"version": "0.2.0",
"license": "LGPL-3.0",
"author": "shiy2008@gmail.com",
"description": "File Uploader element based on Web Components & WebCell v2",
"keywords": [
"file",
"upload",
"element",
"web",
"component",
"web-cell"
],
"homepage": "https://web-cell.dev/FileCell/",
"repository": {
"type": "git",
"url": "git+https://github.com/EasyWebApp/FileCell.git"
},
"bugs": {
"url": "https://github.com/EasyWebApp/FileCell/issues"
},
"source": "source/index.tsx",
"types": "dist/index.d.ts",
"module": "dist/index.esm.js",
"main": "dist/index.js",
"dependencies": {
"@swc/helpers": "^0.3.3",
"mobx": "^5.15.7",
"regenerator-runtime": "^0.13.9",
"web-cell": "^3.0.0-beta.0"
},
"devDependencies": {
"@parcel/packager-ts": "^2.3.2",
"@parcel/transformer-typescript-types": "^2.3.2",
"element-internals-polyfill": "^1.0.0",
"husky": "^7.0.4",
"lint-staged": "^12.3.4",
"parcel": "^2.3.2",
"prettier": "^2.5.1",
"typedoc": "^0.22.12",
"typedoc-plugin-mdn-links": "^1.0.5",
"typescript": "~4.3.5"
},
"prettier": {
"singleQuote": true,
"trailingComma": "none",
"arrowParens": "avoid",
"tabWidth": 4
},
"lint-staged": {
"*.{md,json,yml,ts,tsx}": "prettier --write"
},
"browserslist": "> 0.5%, last 2 versions, not dead",
"targets": {
"main": {
"optimize": true
}
},
"scripts": {
"prepare": "husky install",
"test": "lint-staged",
"pack-docs": "rm -rf docs/ && typedoc source/",
"pack-dist": "rm -rf dist/ && parcel build source/index.tsx",
"build": "npm run pack-docs && npm run pack-dist",
"prepublishOnly": "npm test && npm run build"
}
}