-
Notifications
You must be signed in to change notification settings - Fork 70
/
package.json
116 lines (116 loc) · 3.95 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
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
{
"name": "vite-plugin-chrome-extension",
"version": "0.0.7",
"license": "MIT",
"author": "Stark Shang <[email protected]>",
"description": "A plugin for building Chrome extensions!",
"keywords": [
"vite-plugin",
"chrome extension"
],
"main": "lib/index-cjs.js",
"module": "lib/index-esm.js",
"types": "types/index.d.ts",
"files": [
"lib",
"types",
"manifest.schema.json"
],
"scripts": {
"dev": "rollup -c -w",
"build:types": "tsc -p tsconfigs/tsconfig-types.json",
"build": "rollup -c",
"lint:eslint": "eslint . --ext js --ext ts --ext tsx",
"lint:types": "tsc --noEmit",
"types:manifest": "json2ts --input manifest.schema.json --output manifest.d.ts",
"test": "cross-env TS_NODE_COMPILER_OPTIONS={\\\"module\\\":\\\"commonjs\\\"} mocha --file tests/unit/setup.ts --require ts-node/register --require tsconfig-paths/register"
},
"dependencies": {
"ajv": "^6.11.0",
"array-flat-polyfill": "^1.0.1",
"chalk": "^4.1.1",
"cheerio": "^1.0.0-rc.3",
"convert-source-map": "^1.7.0",
"cosmiconfig": "^6.0.0",
"fs-extra": "^8.1.0",
"glob": "^7.1.6",
"jsonpath-plus": "^4.0.0",
"lodash.difference": "^4.5.0",
"lodash.flatten": "^4.4.0",
"lodash.get": "^4.4.2",
"mem": "^6.0.1",
"prettier": "^1.19.1",
"rollup": "^2.38.5",
"slash": "^3.0.0",
"vite": "^2.2.0",
"webextension-polyfill": "^0.6.0"
},
"devDependencies": {
"@babel/plugin-proposal-class-properties": "^7.13.0",
"@babel/preset-env": "^7.13.8",
"@babel/preset-react": "^7.12.13",
"@rollup/plugin-alias": "^3.1.2",
"@rollup/plugin-babel": "^5.3.0",
"@rollup/plugin-commonjs": "^11",
"@rollup/plugin-json": "^4.0.2",
"@rollup/plugin-node-resolve": "^7.1.1",
"@rollup/plugin-sucrase": "^3.0.0",
"@rollup/plugin-typescript": "^6.0.0",
"@sucrase/jest-plugin": "^2.0.0",
"@testing-library/dom": "^6.12.2",
"@testing-library/jest-dom": "^5.1.1",
"@types/chai": "^4.2.16",
"@types/cheerio": "0.22.22",
"@types/chrome": "^0.0.134",
"@types/fs-extra": "^8.0.1",
"@types/glob": "^7.1.1",
"@types/jest": "^25.1.2",
"@types/jest-in-case": "^1.0.3",
"@types/lodash.difference": "^4.5.6",
"@types/lodash.flatten": "^4.4.6",
"@types/lodash.get": "^4.4.6",
"@types/mocha": "^8.2.2",
"@types/node": "^13.7.0",
"@types/prettier": "^1.19.0",
"@types/react": "^17.0.3",
"@types/react-dom": "^17.0.3",
"@typescript-eslint/eslint-plugin": "^2.19.0",
"@typescript-eslint/parser": "^2.19.0",
"chai": "^4.3.4",
"cross-env": "^7.0.3",
"eslint": "^6.8.0",
"eslint-plugin-react": "^7.22.0",
"jest": "^25.1.0",
"jest-chrome": "0.7.0",
"jest-circus": "^26.6.3",
"jest-html-reporters": "^1.2.1",
"jest-in-case": "^1.0.2",
"json-schema-to-typescript": "^10.1.4",
"mocha": "^8.3.2",
"mocha-suppress-logs": "^0.2.0",
"npm-run-all": "^4.1.5",
"react": "^17.0.2",
"react-dom": "^17.0.2",
"read-pkg-up": "^7.0.1",
"rollup-plugin-bundle-imports": "^1.4.5",
"ts-jest": "^25.2.0",
"ts-node": "^9.1.1",
"tsconfig-paths": "^3.9.0",
"tslib": "^1.10.0",
"typescript": "^4.2.4"
},
"repository": {
"type": "git",
"url": "git+https://github.com/StarkShang/vite-plugin-chrome-extension.git"
},
"bugs": {
"url": "https://github.com/StarkShang/vite-plugin-chrome-extension/issues"
},
"homepage": "https://github.com/StarkShang/vite-plugin-chrome-extension#readme",
"engines": {
"node": ">=8.16.0"
},
"np": {
"testScript": "test:ci"
}
}