-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
66 lines (66 loc) · 1.82 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
{
"name": "docslab",
"version": "0.3.12",
"description": "interactive documentation",
"keywords": [
"docs",
"documentation",
"editor",
"hardware"
],
"homepage": "https://docslab.org/",
"repository": {
"type": "git",
"url": "https://github.com/rerobots/docslab.git"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*.d.ts",
"lib/**/*.css",
"dist/index.all.js",
"yarn.lock"
],
"scripts": {
"build": "webpack",
"build:release": "mkdir dist && webpack --mode production --env fullBundle && cp lib/index.all.js dist/ && webpack --mode production",
"pub": "test -f lib/index.js && yarn publish",
"clean": "rm -r -f lib dist",
"format": "bin/format.sh",
"format:check": "bin/format.sh check",
"lint": "eslint src integrations/docusaurus-theme/src && tsc --noEmit",
"lint:fix": "eslint --fix src integrations/docusaurus-theme/src",
"test": "jest",
"test:end-to-end": "cypress run",
"start": "webpack serve --env fullBundle --env example"
},
"author": "rerobots, Inc. <[email protected]>",
"license": "Apache-2.0",
"dependencies": {
"ace-code": "^1.23.4",
"rerobots": "^0.1.1",
"xterm": "^5.2.1",
"xterm-addon-attach": "^0.8.0",
"xterm-addon-fit": "^0.7.0"
},
"devDependencies": {
"@eslint/js": "^9.16.0",
"@types/jest": "^29.5.5",
"css-loader": "^6.8.1",
"cypress": "^13.3.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"html-webpack-plugin": "^5.5.3",
"jest": "^29.7.0",
"mini-css-extract-plugin": "^2.7.6",
"prettier": "3.3.3",
"style-loader": "^3.3.4",
"ts-jest": "^29.1.1",
"ts-loader": "^9.4.4",
"typescript": "~5.3",
"typescript-eslint": "^8.17.0",
"webpack": "^5.88.1",
"webpack-cli": "^5.1.4",
"webpack-dev-server": "^4.15.1"
}
}