-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
80 lines (80 loc) · 2.32 KB
/
package.json
File metadata and controls
80 lines (80 loc) · 2.32 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
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
{
"name": "makecode-steami",
"description": "STeaMi's Makecode editor",
"version": "0.0.1",
"author": "nedseb",
"license": "MIT",
"scripts": {
"build": "make build",
"clean": "make clean",
"serve": "make serve",
"setup": "make setup",
"ci": "make ci",
"package": "make package",
"staticserve": "make staticserve",
"prepare": "make prepare",
"commit:checks": "npx --no-install git-precommit-checks && npx lint-staged && npx validate-branch-name && git-cz",
"prepare-commit": "cross-env CHECKS_RUN=1 npm run commit:checks"
},
"repository": {
"type": "git",
"url": "https://github.com/steamicc/makecode-steami"
},
"bugs": {
"url": "https://github.com/steamicc/makecode-steami/issues"
},
"dependencies": {
"pxt": "^0.5.1"
},
"devDependencies": {
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"@commitlint/cz-commitlint": "^19.5.0",
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/commit-analyzer": "^13.0.0",
"@semantic-release/git": "^10.0.1",
"@semantic-release/github": "^11.0.0",
"commitizen": "^4.3.1",
"cross-env": "^7.0.3",
"eslint": "^9.12.0",
"eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.2.1",
"git-precommit-checks": "^3.1.0",
"nodemon": "^3.1.4",
"prettier": "^3.3.3",
"semantic-release": "^24.1.2",
"validate-branch-name": "^1.3.1"
},
"lint-staged": {
"*.js, *.json, *.css": "prettier",
"*.ts": "eslint"
},
"config": {
"commitizen": {
"path": "@commitlint/cz-commitlint"
}
},
"nodemonConfig": {
"verbose": true,
"watch": [
"pxt",
"pxt-common-packages",
"pxt-steami",
"pxt-steami-backend"
],
"ext": "js,json,mjs,cjs,ts,c,cpp,h",
"ignore": [
"**/test/**",
"**/build/**",
"**/built/**",
"**/docs/**",
"**/public/**",
"**/_locales/**",
"**/package-lock.json"
],
"delay": 2500,
"events": {
"restart": "make package"
}
}
}