-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
72 lines (72 loc) · 1.59 KB
/
package.json
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
{
"name": "@adobe/genstudio-uix-sdk",
"version": "1.0.2",
"description": "GenStudio UI Extensibility SDK",
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/genstudio-uix-sdk.git"
},
"directories": {
"doc": "doc",
"test": "tests"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "tsc",
"semantic-release": "semantic-release",
"clean": "rm -rf dist docs/api",
"docs": "rm -rf docs/api && typedoc -githubPages false"
},
"keywords": [
"uix",
"genstudio"
],
"author": "Adobe, Inc,",
"license": "Apache-2.0",
"dependencies": {
"@adobe/uix-core": "^1.0.0",
"@adobe/uix-guest": "^1.0.0"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.6",
"jest": "^29.7.0",
"semantic-release": "^24.2.1",
"ts-jest": "^29.2.5",
"typedoc": "^0.27.0",
"typedoc-plugin-markdown": "^4.0.1",
"typedoc-plugin-zod": "^1.1.2",
"typescript": "^5.7.3"
},
"jest": {
"preset": "ts-jest",
"testEnvironment": "node",
"collectCoverage": true,
"coverageDirectory": "coverage",
"coverageReporters": [
"text",
"lcov",
"html"
],
"collectCoverageFrom": [
"src/**/*.{ts,tsx}",
"!src/**/index.ts",
"!src/**/*.d.ts"
]
}
}