-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
85 lines (85 loc) · 2.14 KB
/
Copy pathpackage.json
File metadata and controls
85 lines (85 loc) · 2.14 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
81
82
83
84
85
{
"name": "@phcdevworks/spectre-shell",
"version": "1.1.1",
"description": "Thin, framework-agnostic bootstrap shell for Spectre apps",
"type": "module",
"packageManager": "npm@11.17.0",
"workspaces": [
"examples/*"
],
"keywords": [
"app-shell",
"spa",
"router",
"typescript",
"framework-agnostic",
"phcdevworks",
"spectre"
],
"author": "PHCDevworks",
"license": "MIT",
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/phcdevworks"
}
],
"repository": {
"type": "git",
"url": "git+https://github.com/phcdevworks/spectre-shell.git"
},
"bugs": {
"url": "https://github.com/phcdevworks/spectre-shell/issues"
},
"homepage": "https://github.com/phcdevworks/spectre-shell#readme",
"main": "./dist/index.js",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"default": "./dist/index.js"
}
},
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"sideEffects": [
"./dist/styles.js"
],
"scripts": {
"build": "tsc",
"clean": "rm -rf dist",
"typecheck": "tsc --noEmit",
"release:propose": "node --import jiti/register scripts/propose-version.ts",
"lint": "eslint src tests",
"test": "vitest run",
"check:ecosystem": "spectre-manifest-validate spectre.manifest.json && spectre-manifest-check spectre.manifest.json .",
"check": "npm run typecheck && npm run lint && npm run build && npm run test && npm run check:ecosystem",
"prepublishOnly": "npm run check"
},
"devDependencies": {
"@phcdevworks/spectre-manifest": "^1.0.0",
"eslint": "^10.5.0",
"jiti": "^2.7.0",
"jsdom": "^29.1.1",
"typescript": "^6.0.3",
"typescript-eslint": "^8.61.1",
"vitest": "^4.1.9"
},
"engines": {
"node": "^22.12.0 || >=24.0.0"
},
"publishConfig": {
"access": "public"
},
"dependencies": {
"@phcdevworks/spectre-shell-router": "^1.1.0",
"@phcdevworks/spectre-shell-signals": "^1.1.0",
"@phcdevworks/spectre-tokens": "^3.1.0",
"@phcdevworks/spectre-ui": "^2.3.0"
},
"allowScripts": {
"esbuild@0.27.7": true
}
}