-
Notifications
You must be signed in to change notification settings - Fork 14
/
Copy pathpackage.json
62 lines (62 loc) · 1.87 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
{
"name": "lordly_read",
"version": "1.0.0",
"description": "",
"engines": {
"node": ">=8.10"
},
"scripts": {
"start": "aiot server --watch --open-nuttx --enable-custom-component true --enable-protobuf true --enable-image-png8",
"build": "aiot build --enable-custom-component --enable-image-png8 --enable-jsc",
"release": "aiot release --enable-custom-component --enable-image-png8 --enable-jsc",
"watch": "aiot watch --open-nuttx",
"lint": "eslint --format codeframe --fix --ext .ux,.js src/",
"docs:dev": "vitepress dev docs",
"docs:build": "vitepress build docs",
"docs:preview": "vitepress preview docs"
},
"lint-staged": {
"*.{ux,js}": [
"prettier --write",
"eslint --format codeframe --fix",
"git add"
],
"*.{less,css}": [
"prettier --write",
"stylelint --fix --custom-syntax postcss-less",
"git add"
]
},
"devDependencies": {
"@aiot-toolkit/jsc": "^1.0.7",
"@aiot-toolkit/velasim": "^0.1.26",
"@commitlint/cli": "^19.5.0",
"@commitlint/config-conventional": "^19.5.0",
"aiot-toolkit": "1.1.4",
"babel-eslint": "^10.1.0",
"buffer": "^6.0.3",
"element-plus": "^2.8.6",
"eslint": "^6.8.0",
"eslint-config-prettier": "^6.15.0",
"eslint-import-resolver-node": "^0.3.9",
"eslint-plugin-import": "^2.31.0",
"eslint-plugin-prettier": "^3.4.1",
"eslint-plugin-ux": "^0.0.4",
"husky": "^8.0.1",
"less": "^4.2.0",
"less-loader": "^12.2.0",
"lint-staged": "^15.2.10",
"postcss-html": "^1.7.0",
"postcss-less": "^6.0.0",
"prettier": "^3.3.3",
"stylelint": "^16.9.0",
"stylelint-config-recess-order": "^5.1.1",
"stylelint-config-standard": "^36.0.1",
"stylelint-order": "^6.0.4",
"ts-loader": "^9.5.1",
"typescript": "^5.6.2",
"ux-types": "^0.1.1",
"vitepress": "^1.3.4",
"vue": "^3.5.11"
}
}