lightspec 0.3.0 → 0.3.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +22 -19
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "lightspec",
|
|
3
|
-
"version": "0.3.
|
|
3
|
+
"version": "0.3.1",
|
|
4
4
|
"description": "AI-native system for spec-driven development",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"lightspec",
|
|
@@ -37,6 +37,25 @@
|
|
|
37
37
|
"!dist/**/__tests__",
|
|
38
38
|
"!dist/**/*.map"
|
|
39
39
|
],
|
|
40
|
+
"scripts": {
|
|
41
|
+
"lint": "eslint src/",
|
|
42
|
+
"build": "node build.js",
|
|
43
|
+
"dev": "tsc --watch",
|
|
44
|
+
"dev:cli": "pnpm build && node bin/lightspec.js",
|
|
45
|
+
"test": "vitest run",
|
|
46
|
+
"test:watch": "vitest",
|
|
47
|
+
"test:ui": "vitest --ui",
|
|
48
|
+
"test:coverage": "vitest --coverage",
|
|
49
|
+
"test:postinstall": "node scripts/postinstall.js",
|
|
50
|
+
"prepare": "pnpm run build",
|
|
51
|
+
"prepublishOnly": "pnpm run build",
|
|
52
|
+
"postinstall": "node scripts/postinstall.js",
|
|
53
|
+
"check:pack-version": "node scripts/pack-version-check.mjs",
|
|
54
|
+
"release": "pnpm run release:ci",
|
|
55
|
+
"release:ci": "pnpm run check:pack-version && pnpm exec changeset publish",
|
|
56
|
+
"release:manual": "bash scripts/release-manual.sh",
|
|
57
|
+
"changeset": "changeset"
|
|
58
|
+
},
|
|
40
59
|
"engines": {
|
|
41
60
|
"node": ">=20.19.0"
|
|
42
61
|
},
|
|
@@ -60,21 +79,5 @@
|
|
|
60
79
|
"yaml": "^2.8.2",
|
|
61
80
|
"zod": "^4.0.17"
|
|
62
81
|
},
|
|
63
|
-
"
|
|
64
|
-
|
|
65
|
-
"build": "node build.js",
|
|
66
|
-
"dev": "tsc --watch",
|
|
67
|
-
"dev:cli": "pnpm build && node bin/lightspec.js",
|
|
68
|
-
"test": "vitest run",
|
|
69
|
-
"test:watch": "vitest",
|
|
70
|
-
"test:ui": "vitest --ui",
|
|
71
|
-
"test:coverage": "vitest --coverage",
|
|
72
|
-
"test:postinstall": "node scripts/postinstall.js",
|
|
73
|
-
"postinstall": "node scripts/postinstall.js",
|
|
74
|
-
"check:pack-version": "node scripts/pack-version-check.mjs",
|
|
75
|
-
"release": "pnpm run release:ci",
|
|
76
|
-
"release:ci": "pnpm run check:pack-version && pnpm exec changeset publish",
|
|
77
|
-
"release:manual": "bash scripts/release-manual.sh",
|
|
78
|
-
"changeset": "changeset"
|
|
79
|
-
}
|
|
80
|
-
}
|
|
82
|
+
"packageManager": "pnpm@10.18.3+sha512.bbd16e6d7286fd7e01f6b3c0b3c932cda2965c06a908328f74663f10a9aea51f1129eea615134bf992831b009eabe167ecb7008b597f40ff9bc75946aadfb08d"
|
|
83
|
+
}
|