-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
75 lines (75 loc) · 2.24 KB
/
Copy pathpackage.json
File metadata and controls
75 lines (75 loc) · 2.24 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
{
"name": "@techninja/clearstack",
"version": "0.3.37",
"type": "module",
"description": "A no-build web component framework specification — scaffold, validate, and evolve spec-compliant projects",
"bin": {
"clearstack": "bin/cli.js"
},
"files": [
"bin/",
"lib/",
"templates/",
"docs/"
],
"repository": {
"type": "git",
"url": "git+https://github.com/techninja/clearstack.git"
},
"scripts": {
"start": "node src/server.js",
"dev": "node --watch --env-file=.env --env-file=.env.local src/server.js",
"setup": "node scripts/vendor-deps.js && node scripts/build-icons.js",
"test": "node scripts/test.js",
"spec": "node --env-file=.env scripts/spec.js",
"lint": "eslint --config .configs/eslint.config.js . --fix",
"format": "prettier --config .configs/.prettierrc --write src scripts tests templates/**/*.md templates/**/*.html templates/**/*.css templates/**/*.json",
"typecheck": "tsc --project .configs/jsconfig.json",
"release": "node scripts/release.js",
"prepublishOnly": "node scripts/sync-docs.js"
},
"publishConfig": {
"access": "public"
},
"imports": {
"#store/*": "./src/store/*",
"#utils/*": "./src/utils/*",
"#atoms/*": "./src/components/atoms/*",
"#molecules/*": "./src/components/molecules/*",
"#organisms/*": "./src/components/organisms/*",
"#templates/*": "./src/components/templates/*",
"#pages/*": "./src/pages/*"
},
"keywords": [
"web-components",
"no-build",
"es-modules",
"specification",
"scaffold",
"hybrids"
],
"license": "MIT",
"dependencies": {
"@inquirer/prompts": "^8.3.2"
},
"devDependencies": {
"@open-wc/testing": "^4.0.0",
"@types/ws": "^8.18.1",
"@web/test-runner": "^0.20.0",
"@web/test-runner-playwright": "^0.11.0",
"eslint": "^10.1.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-jsdoc": "^62.8.1",
"eslint-plugin-unused-imports": "^4.4.1",
"express": "^5.2.1",
"hybrids": "^9.1.22",
"lucide-static": "^1.7.0",
"markdownlint-cli2": "^0.21.0",
"playwright": "^1.50.0",
"prettier": "^3.8.1",
"stylelint": "^17.6.0",
"stylelint-config-standard": "^40.0.0",
"typescript": "^6.0.2",
"ws": "^8.20.0"
}
}