@pc-nexus/manifest 0.8.0-next.11
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/CHANGELOG.md +13 -0
- package/README.md +3 -0
- package/package.json +29 -0
- package/schema/manifest.schema.json +3664 -0
package/CHANGELOG.md
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
# Changelog
|
|
2
|
+
|
|
3
|
+
All notable changes to this project will be documented in this file.
|
|
4
|
+
|
|
5
|
+
# 0.8.0-next.11 (2026-09-02)
|
|
6
|
+
|
|
7
|
+
### Features
|
|
8
|
+
|
|
9
|
+
- 增加包 @pc-nexus/manifest 用于公开 schema (#1648) 3c0e816, closes #1648
|
|
10
|
+
|
|
11
|
+
# Changelog
|
|
12
|
+
|
|
13
|
+
All notable changes to this project will be documented in this file.
|
package/README.md
ADDED
package/package.json
ADDED
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@pc-nexus/manifest",
|
|
3
|
+
"version": "0.8.0-next.11",
|
|
4
|
+
"description": "JSON Schema for Nexus app manifests",
|
|
5
|
+
"main": "schema/manifest.schema.json",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"build": "tsx scripts/build-manifest-schemas.ts",
|
|
8
|
+
"pub:alpha": "cd dist && npm publish --access public --tag alpha",
|
|
9
|
+
"pub": "cd dist && npm publish --access public --tag latest",
|
|
10
|
+
"pub-next": "cd dist && npm publish --access public --tag next"
|
|
11
|
+
},
|
|
12
|
+
"repository": {
|
|
13
|
+
"type": "git",
|
|
14
|
+
"url": "git+https://github.com/atinc/pc-nexus.git"
|
|
15
|
+
},
|
|
16
|
+
"author": "",
|
|
17
|
+
"license": "ISC",
|
|
18
|
+
"directories": {
|
|
19
|
+
"lib": "dist"
|
|
20
|
+
},
|
|
21
|
+
"exports": {
|
|
22
|
+
".": "./schema/manifest.schema.json",
|
|
23
|
+
"./schema/manifest.schema.json": "./schema/manifest.schema.json"
|
|
24
|
+
},
|
|
25
|
+
"type": "module",
|
|
26
|
+
"dependencies": {},
|
|
27
|
+
"devDependencies": {},
|
|
28
|
+
"peerDependencies": {}
|
|
29
|
+
}
|