-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
45 lines (45 loc) · 1.72 KB
/
Copy pathpackage.json
File metadata and controls
45 lines (45 loc) · 1.72 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
{
"type": "module",
"scripts": {
"build": "npm run build:dev",
"build:dev": "cross-env NODE_ENV=dev node scripts/build.js",
"build:prod": "cross-env NODE_ENV=prod node scripts/build.js",
"build:all": "npm run build:dev && npm run build:prod",
"browser": "node scripts/bot.js open",
"browser:ci": "cross-env CI=true node scripts/bot.js open",
"record": "node scripts/bot.js record",
"watch": "npm run watch:dev",
"watch:dev": "node scripts/watch.js \"npm run build:dev\"",
"watch:prod": "node scripts/watch.js \"npm run build:prod\"",
"watch:all": "node scripts/watch.js \"npm run build:all\"",
"pack": "npm run build:prod && node scripts/pack.js",
"lint": "eslint src/ scripts/",
"lint:fix": "eslint src/ scripts/ --fix",
"format": "prettier --write \"**/*.{js,json,md}\"",
"format:check": "prettier --check \"**/*.{js,json,md}\"",
"test": "node scripts/test.js",
"test:watch": "node scripts/watch.js \"npm test\"",
"test:coverage": "node scripts/test.js --coverage",
"integration": "node scripts/integration-test.js",
"integration:ci": "node scripts/integration-test.js --ci",
"verify": "npm run build && npm run format:check && npm run lint && npm run test && npm run integration"
},
"devDependencies": {
"@jest/globals": "^30.2.0",
"cross-env": "^10.1.0",
"esbuild": "^0.27.3",
"esbuild-plugin-inline-import": "^1.1.0",
"eslint": "^8.57.1",
"eslint-config-standard": "^17.1.0",
"eslint-plugin-compat": "^6.1.0",
"jest": "^30.2.0",
"jest-environment-jsdom": "^30.2.0",
"playwright": "^1.58.2",
"prettier": "^3.4.2"
},
"dependencies": {
"highlight.js": "^11.11.1",
"js-yaml": "^4.1.1",
"pako": "^2.1.0"
}
}