-
Notifications
You must be signed in to change notification settings - Fork 2
/
package.json
70 lines (70 loc) · 2.59 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
{
"name": "bitgen-example",
"version": "0.0.0",
"private": true,
"homepage": "https://github.com/Toniq-Labs/bitgen-example",
"bugs": {
"url": "https://github.com/Toniq-Labs/bitgen-example/issues"
},
"repository": {
"type": "git",
"url": "https://github.com/Toniq-Labs/bitgen-example"
},
"license": "(MIT or CC0 1.0)",
"author": {
"name": "Toniq-Labs",
"url": "https://github.com/Toniq-Labs"
},
"scripts": {
"build": "virmator frontend build",
"compile": "rm -rf dist && virmator compile",
"docs": "virmator docs",
"format": "virmator format",
"start": "npm install && virmator frontend",
"test:all": "concurrently --colors --kill-others-on-fail -c auto --names types,spelling,format,docs,build,deps \"npm run test:types\" \"npm run test:spelling\" \"npm run test:format\" \"npm run test:docs\" \"npm run build\" \"npm run test:deps\"",
"test:deps": "virmator deps check",
"test:docs": "virmator docs check",
"test:format": "virmator format check",
"test:spelling": "virmator spellcheck",
"test:types": "tsc --noEmit"
},
"dependencies": {
"@augment-vir/browser": "^23.2.0",
"@augment-vir/common": "^23.2.0",
"@augment-vir/element-vir": "^15.4.2",
"element-vir": "^20.0.8"
},
"devDependencies": {
"@augment-vir/node-js": "^23.2.0",
"@open-wc/testing": "^4.0.0",
"@types/mocha": "^10.0.6",
"@web/dev-server-esbuild": "^1.0.2",
"@web/test-runner": "^0.18.0",
"@web/test-runner-commands": "^0.9.0",
"@web/test-runner-playwright": "^0.11.0",
"@web/test-runner-visual-regression": "^0.9.0",
"cspell": "^8.3.2",
"dependency-cruiser": "^16.2.0",
"esbuild": "^0.20.0",
"istanbul-smart-text-reporter": "^1.1.3",
"markdown-code-example-inserter": "^0.3.3",
"npm-check-updates": "~16.14.14",
"prettier": "^3.2.2",
"prettier-plugin-interpolated-html-tags": "^1.0.3",
"prettier-plugin-jsdoc": "^1.3.0",
"prettier-plugin-multiline-arrays": "^3.0.3",
"prettier-plugin-organize-imports": "^3.2.4",
"prettier-plugin-packagejson": "^2.4.10",
"prettier-plugin-sort-json": "^3.1.0",
"prettier-plugin-toml": "^2.0.1",
"type-fest": "^4.10.2",
"typedoc": "^0.25.7",
"typescript": "^5.3.3",
"virmator": "^11.3.1",
"vite": "^5.0.12",
"vite-tsconfig-paths": "^4.3.1"
},
"overrides": {
"semver": "^7.5.3"
}
}