-
Notifications
You must be signed in to change notification settings - Fork 7
Expand file tree
/
Copy pathpackage.json
More file actions
82 lines (82 loc) · 1.92 KB
/
package.json
File metadata and controls
82 lines (82 loc) · 1.92 KB
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
73
74
75
76
77
78
79
80
81
82
{
"name": "@adobe/genstudio-extensibility-sdk",
"version": "1.0.2",
"description": "GenStudio Extensibility SDK",
"engines": {
"node": ">=20.0.0",
"npm": ">=9.0.0"
},
"main": "./dist/cjs/index.js",
"module": "./dist/esm/index.js",
"types": "./dist/cjs/index.d.ts",
"files": [
"dist"
],
"exports": {
".": {
"import": "./dist/esm/index.js",
"require": "./dist/cjs/index.js",
"types": "./dist/esm/index.d.ts"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/adobe/genstudio-extensibility-sdk.git"
},
"directories": {
"doc": "doc",
"test": "tests"
},
"publishConfig": {
"access": "public"
},
"scripts": {
"test": "jest",
"test:coverage": "jest --coverage",
"build": "rm -rf dist && tsc -p tsconfig.esm.json && tsc -p tsconfig.cjs.json",
"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",
"zod": "^3.25.64"
},
"devDependencies": {
"@semantic-release/changelog": "^6.0.3",
"@semantic-release/git": "^10.0.1",
"@types/jest": "^29.5.14",
"@types/node": "^22.10.6",
"eventemitter3": "^5.0.4",
"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"
]
}
}