@nextop-os/workspace-issue-manager 0.0.16
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/README.md +11 -0
- package/dist/chunk-CSDFXQBD.js +73 -0
- package/dist/chunk-CSDFXQBD.js.map +1 -0
- package/dist/chunk-HMMAMS4Z.js +33 -0
- package/dist/chunk-HMMAMS4Z.js.map +1 -0
- package/dist/chunk-POBWWUUQ.js +44 -0
- package/dist/chunk-POBWWUUQ.js.map +1 -0
- package/dist/contracts/index.d.ts +312 -0
- package/dist/contracts/index.js +1 -0
- package/dist/contracts/index.js.map +1 -0
- package/dist/i18n/index.d.ts +18 -0
- package/dist/i18n/index.js +13 -0
- package/dist/i18n/index.js.map +1 -0
- package/dist/index.d.ts +25 -0
- package/dist/index.js +12 -0
- package/dist/index.js.map +1 -0
- package/dist/react/index.d.ts +17 -0
- package/dist/react/index.js +11 -0
- package/dist/react/index.js.map +1 -0
- package/dist/workbench/index.d.ts +35 -0
- package/dist/workbench/index.js +101 -0
- package/dist/workbench/index.js.map +1 -0
- package/openapi/issue-manager.v1.yaml +1311 -0
- package/package.json +69 -0
package/package.json
ADDED
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@nextop-os/workspace-issue-manager",
|
|
3
|
+
"version": "0.0.16",
|
|
4
|
+
"private": false,
|
|
5
|
+
"type": "module",
|
|
6
|
+
"types": "./dist/index.d.ts",
|
|
7
|
+
"exports": {
|
|
8
|
+
".": {
|
|
9
|
+
"types": "./dist/index.d.ts",
|
|
10
|
+
"import": "./dist/index.js"
|
|
11
|
+
},
|
|
12
|
+
"./contracts": {
|
|
13
|
+
"types": "./dist/contracts/index.d.ts",
|
|
14
|
+
"import": "./dist/contracts/index.js"
|
|
15
|
+
},
|
|
16
|
+
"./i18n": {
|
|
17
|
+
"types": "./dist/i18n/index.d.ts",
|
|
18
|
+
"import": "./dist/i18n/index.js"
|
|
19
|
+
},
|
|
20
|
+
"./openapi/issue-manager.v1.yaml": "./openapi/issue-manager.v1.yaml",
|
|
21
|
+
"./react": {
|
|
22
|
+
"types": "./dist/react/index.d.ts",
|
|
23
|
+
"import": "./dist/react/index.js"
|
|
24
|
+
},
|
|
25
|
+
"./workbench": {
|
|
26
|
+
"types": "./dist/workbench/index.d.ts",
|
|
27
|
+
"import": "./dist/workbench/index.js"
|
|
28
|
+
}
|
|
29
|
+
},
|
|
30
|
+
"files": [
|
|
31
|
+
"dist",
|
|
32
|
+
"openapi",
|
|
33
|
+
"README.md"
|
|
34
|
+
],
|
|
35
|
+
"repository": {
|
|
36
|
+
"type": "git",
|
|
37
|
+
"url": "git+https://github.com/nextop-os/nextop.git",
|
|
38
|
+
"directory": "packages/workspace/issue-manager"
|
|
39
|
+
},
|
|
40
|
+
"dependencies": {
|
|
41
|
+
"@nextop-os/ui-i18n-runtime": "0.0.16",
|
|
42
|
+
"@nextop-os/ui-system": "0.0.16",
|
|
43
|
+
"@nextop-os/workbench-surface": "0.0.16"
|
|
44
|
+
},
|
|
45
|
+
"devDependencies": {
|
|
46
|
+
"@types/node": "^24.0.1",
|
|
47
|
+
"@types/react": "^19.1.6",
|
|
48
|
+
"@types/react-dom": "^19.1.5",
|
|
49
|
+
"react": "^19.1.0",
|
|
50
|
+
"react-dom": "^19.1.0",
|
|
51
|
+
"typescript": "^5.8.3",
|
|
52
|
+
"@nextop-os/config-tsconfig": "0.0.0"
|
|
53
|
+
},
|
|
54
|
+
"peerDependencies": {
|
|
55
|
+
"react": "^19.1.0",
|
|
56
|
+
"react-dom": "^19.1.0"
|
|
57
|
+
},
|
|
58
|
+
"nextop": {
|
|
59
|
+
"tailwindSourceRoot": "src"
|
|
60
|
+
},
|
|
61
|
+
"publishConfig": {
|
|
62
|
+
"access": "public"
|
|
63
|
+
},
|
|
64
|
+
"scripts": {
|
|
65
|
+
"build": "tsup --config tsup.config.ts",
|
|
66
|
+
"test": "node --test --experimental-strip-types ./src/**/*.test.ts",
|
|
67
|
+
"typecheck": "tsc --noEmit -p tsconfig.json"
|
|
68
|
+
}
|
|
69
|
+
}
|