-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
38 lines (38 loc) · 1017 Bytes
/
package.json
File metadata and controls
38 lines (38 loc) · 1017 Bytes
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
{
"name": "@bracketed/actions-manager",
"packageManager": "yarn@4.11.0",
"main": "dist/index.mjs",
"type": "module",
"scripts": {
"start": "yarn node ./dist/index.mjs",
"test": "yarn compile && yarn start",
"compile": "yarn tsup",
"generate": "yarn tsx ./generate-types.ts"
},
"devDependencies": {
"@biomejs/biome": "^2.3.7",
"@bracketed/tsup-configuration": "^1.0.5",
"@bracketed/typescript-config": "^4.7.1",
"@swc/core": "^1.15.3",
"@types/js-yaml": "^4.0.9",
"@types/node": "^24.10.1",
"@types/react": "^19.2.6",
"@types/react-dom": "^19.2.3",
"@types/turndown": "^5.0.6",
"esbuild": "^0.27.0",
"esbuild-plugin-file-path-extensions": "^2.1.4",
"esbuild-plugin-version-injector": "^1.2.1",
"tsup": "^8.5.1",
"tsx": "^4.20.6",
"typescript": "^5.9.3"
},
"dependencies": {
"@bracketed/logger": "^1.1.1",
"cheerio": "^1.1.2",
"js-yaml": "^4.1.1",
"json-schema-to-typescript": "^15.0.4",
"react": "^19.2.0",
"react-dom": "^19.2.0",
"turndown": "^7.2.2"
}
}