-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 1006 Bytes
/
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
{
"name": "rerobots",
"version": "0.1.1",
"description": "JS client library for rerobots",
"repository": {
"type": "git",
"url": "https://github.com/rerobots/js.git"
},
"author": "rerobots, Inc. <[email protected]>",
"license": "Apache-2.0",
"scripts": {
"build": "webpack",
"build:release": "webpack --mode production",
"pub": "test -f lib/index.js && yarn publish",
"clean": "rm -r -f lib",
"format": "prettier --write src tests",
"format:check": "prettier --check src tests",
"lint": "eslint src && tsc --noEmit"
},
"main": "lib/index.js",
"types": "lib/index.d.ts",
"files": [
"lib/**/*.d.ts",
"yarn.lock"
],
"devDependencies": {
"@eslint/js": "^9.16.0",
"eslint": "^9.16.0",
"globals": "^15.13.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"ts-loader": "^9.5.1",
"typescript": "^5.7.2",
"typescript-eslint": "^8.17.0",
"webpack": "^5.97.0",
"webpack-cli": "^5.1.4"
},
"dependencies": {}
}