@treeseed/core 0.4.0 → 0.4.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 +20 -20
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@treeseed/core",
|
|
3
|
-
"version": "0.4.
|
|
3
|
+
"version": "0.4.1",
|
|
4
4
|
"description": "Treeseed Research Hub package for Astro, Starlight, knowledge-factory content, and forms.",
|
|
5
5
|
"license": "AGPL-3.0-only",
|
|
6
6
|
"repository": {
|
|
@@ -31,34 +31,34 @@
|
|
|
31
31
|
"bin": {
|
|
32
32
|
"treeseed-workspace-bootstrap": "./dist/scripts/workspace-bootstrap.js"
|
|
33
33
|
},
|
|
34
|
-
|
|
34
|
+
"scripts": {
|
|
35
35
|
"setup": "npm install",
|
|
36
36
|
"setup:ci": "npm ci",
|
|
37
37
|
"build:dist": "node ./scripts/run-ts.mjs ./scripts/build-dist.ts",
|
|
38
38
|
"prepack": "npm run build:dist",
|
|
39
39
|
"starlight:patch": "node ./scripts/run-ts.mjs ./scripts/patch-starlight-content-path.ts",
|
|
40
40
|
"precheck": "npm run starlight:patch",
|
|
41
|
-
|
|
42
|
-
|
|
43
|
-
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
|
|
54
|
-
|
|
55
|
-
|
|
56
|
-
|
|
57
|
-
|
|
41
|
+
"check": "node ./scripts/run-ts.mjs ./scripts/run-fixture-astro-command.ts check",
|
|
42
|
+
"prebuild": "npm run starlight:patch && node ./scripts/run-ts.mjs ./scripts/aggregate-book.ts",
|
|
43
|
+
"build": "TREESEED_LOCAL_DEV_MODE=cloudflare node ./scripts/run-ts.mjs ./scripts/run-fixture-astro-command.ts build",
|
|
44
|
+
"preview": "node ./scripts/run-ts.mjs ./scripts/run-fixture-astro-command.ts preview",
|
|
45
|
+
"test:unit": "vitest run --config ./vitest.config.ts",
|
|
46
|
+
"test": "npm run test:unit",
|
|
47
|
+
"lint": "npm run fixtures:check && npm run starlight:patch && npm run build:dist",
|
|
48
|
+
"verify:direct": "npm run release:verify",
|
|
49
|
+
"verify:local": "node --input-type=module -e \"process.env.TREESEED_VERIFY_DRIVER='direct'; await import('@treeseed/sdk/scripts/verify-driver')\"",
|
|
50
|
+
"verify:action": "node --input-type=module -e \"process.env.TREESEED_VERIFY_DRIVER='act'; await import('@treeseed/sdk/scripts/verify-driver')\"",
|
|
51
|
+
"verify": "node --input-type=module -e \"await import('@treeseed/sdk/scripts/verify-driver')\"",
|
|
52
|
+
"test:smoke": "node ./scripts/run-ts.mjs ./scripts/test-smoke.ts",
|
|
53
|
+
"fixtures:resolve": "node ./scripts/run-ts.mjs ./scripts/fixture-tools.ts resolve",
|
|
54
|
+
"fixtures:check": "node ./scripts/run-ts.mjs ./scripts/fixture-tools.ts check",
|
|
55
|
+
"release:setup": "npm run setup:ci",
|
|
56
|
+
"release:check-tag": "node ./scripts/run-ts.mjs ./scripts/assert-release-tag-version.ts",
|
|
57
|
+
"release:verify": "node ./scripts/run-ts.mjs ./scripts/release-verify.ts",
|
|
58
58
|
"release:publish": "node ./scripts/run-ts.mjs ./scripts/publish-package.ts"
|
|
59
59
|
},
|
|
60
60
|
"dependencies": {
|
|
61
|
-
"@treeseed/sdk": "^0.4.
|
|
61
|
+
"@treeseed/sdk": "^0.4.1",
|
|
62
62
|
"@astrojs/check": "^0.9.8",
|
|
63
63
|
"@astrojs/cloudflare": "^12.6.13",
|
|
64
64
|
"@astrojs/sitemap": "3.7.0",
|