-
Notifications
You must be signed in to change notification settings - Fork 8
Expand file tree
/
Copy pathpackage.json
More file actions
60 lines (60 loc) · 1.85 KB
/
package.json
File metadata and controls
60 lines (60 loc) · 1.85 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
{
"name": "budoux-extension",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=16.0"
},
"files": [
"dist/**/*"
],
"scripts": {
"build": "npm run bundle",
"rebuild": "npm run clean && npm run build",
"tsc:cjs": "tsc",
"tsc:es": "tsc --module ES2020",
"prebundle": "npm run tsc:es",
"bundle": "node scripts/esbuild.js",
"predist": "npm run bundle",
"dist": "ts-node scripts/package.ts -d dist --js build/bundle",
"prezip": "npm run clean && npm run dist",
"zip": "ts-node scripts/package.ts -d dist --zip budoux.zip",
"bundle:test": "esbuild build/tests/index.browser.js --outdir=build/bundle --bundle --sourcemap",
"pretest": "npm run tsc:es && npm run bundle:test",
"test": "karma start --single-run",
"lint": "eslint src/** tests/** --no-error-on-unmatched-pattern",
"fix": "eslint src/** tests/** --no-error-on-unmatched-pattern --fix",
"clean": "node scripts/clean.js && gts clean"
},
"author": "Koji Ishii",
"license": "Apache-2.0",
"dependencies": {
"@material/mwc-button": "^0.27.0",
"@material/mwc-formfield": "^0.27.0",
"@material/mwc-radio": "^0.27.0",
"@material/mwc-textfield": "^0.27.0",
"budoux": "^0.8.1"
},
"devDependencies": {
"@types/archiver": "^7.0.0",
"@types/chrome": "^0.1.0",
"@types/jasmine": "^6.0.0",
"@types/jsdom": "^28.0.1",
"@types/node": "^25.0.1",
"@typescript-eslint/eslint-plugin": "^8.18.2",
"archiver": "^8.0.0",
"commander": "^14.0.0",
"esbuild": "^0.28.0",
"eslint": "^9.17.0",
"eslint-config-prettier": "^10.0.2",
"eslint-plugin-prettier": "^5.2.1",
"glob": "^13.0.0",
"jasmine": "^6.0.0",
"jsdom": "^29.0.1",
"karma": "^6.4.2",
"karma-chrome-launcher": "^3.2.0",
"karma-jasmine": "^5.1.0",
"ts-node": "^10.4.0",
"typescript": "^5.1.3"
}
}