-
Notifications
You must be signed in to change notification settings - Fork 14
/
package.json
128 lines (128 loc) · 3.5 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
117
118
119
120
121
122
123
124
125
126
127
128
{
"name": "xs-dev",
"version": "0.33.1",
"description": "CLI for automating the setup and usage of Moddable XS tools",
"types": "build/types/types.d.ts",
"engines": {
"node": ">=20"
},
"bin": {
"xs-dev": "build/src/cli.js"
},
"scripts": {
"xs-dev": "tsx src/cli.ts",
"xs-dev:debug": "DEBUG=* tsx --trace-deprecation src/cli.ts",
"format": "prettier --write **/*.{js,ts,json}",
"lint": "eslint src/",
"clean-build": "rm -rf ./build",
"compile": "tsc -p .",
"build": "pnpm run format && pnpm run lint && pnpm run clean-build && pnpm run compile",
"prepublishOnly": "pnpm run build",
"test": "jest",
"watch": "jest --watch",
"snapupdate": "jest --updateSnapshot",
"coverage": "jest --coverage",
"start:docs": "astro dev --root ./docs",
"build:docs": "astro build --root ./docs",
"preview:docs": "astro preview --root ./docs",
"ci:version:changeset": "changeset version",
"ci:version": "pnpm ci:version:changeset && pnpm ci:version:install",
"ci:version:install": "pnpm install --frozen-lockfile=false",
"ci:publish": "changeset publish",
"release": "auto shipit"
},
"files": [
"tsconfig.json",
"build",
"LICENSE",
"README.md",
"docs"
],
"license": "MIT",
"repository": {
"type": "git",
"url": "https://github.com/HipsterBrown/xs-dev.git"
},
"dependencies": {
"@octokit/rest": "^20.1.1",
"@stricli/core": "^1.1.0",
"axios": "^1.2.1",
"gluegun": "^5.1.2",
"serialport": "^10.3.0",
"serve-handler": "^6.1.3",
"simple-plist": "^1.3.1",
"tar-fs": "^2.1.1",
"unzip-stream": "^0.3.1",
"usb": "^2.2.0",
"windows-shortcuts": "^0.1.6"
},
"optionalDependencies": {
"node-liblzma": "^1.1.9"
},
"devDependencies": {
"@astrojs/starlight": "^0.25.4",
"@auto-it/all-contributors": "^11.2.1",
"@auto-it/conventional-commits": "^11.2.1",
"@auto-it/first-time-contributor": "^11.2.1",
"@auto-it/magic-zero": "^11.2.1",
"@babel/core": ">=7.20.12 <8.0.0",
"@changesets/cli": "^2.19.0",
"@justinribeiro/lite-youtube": "^1.5.0",
"@types/jest": "^27.4.0",
"@types/node": "^18.11.19",
"@types/serve-handler": "^6.1.1",
"@types/tar-fs": "^2.0.1",
"@types/unzip-stream": "^0.3.1",
"@typescript-eslint/eslint-plugin": "^8.1.0",
"@typescript-eslint/parser": "^8.1.0",
"astro": "4.13.3",
"auto": "^11.2.1",
"eslint": "^8.57.0",
"eslint-config-love": "^62.0.0",
"eslint-config-prettier": "^8.3.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-node": "^11.1.0",
"eslint-plugin-prettier": "^5.2.1",
"eslint-plugin-promise": "^7.1.0",
"jest": "^29.7.0",
"prettier": "^3.3.3",
"rollup": "^2.78.1",
"solid-js": "^1.4.3",
"tailwindcss": "^3.0.24",
"ts-jest": "^29.2.4",
"ts-node": "^10.9.2",
"tsx": "^4.19.2",
"typescript": "^5.5.4",
"typescript-eslint": "^8.1.0"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node"
},
"volta": {
"node": "18.14.0"
},
"prettier": {
"semi": false,
"singleQuote": true
},
"pnpm": {
"overrides": {
"semver@>=7.0.0 <7.5.2": ">=7.5.2",
"ejs@<3.1.7": ">=3.1.7",
"axios@>=0.8.1 <1.6.0": ">=1.6.0",
"minimatch@<3.0.5": ">=3.0.5"
}
},
"author": "HipsterBrown <[email protected]>",
"auto": {
"plugins": [
"magic-zero",
"npm",
"all-contributors",
"conventional-commits",
"first-time-contributor",
"released"
]
}
}