-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
78 lines (78 loc) · 2.2 KB
/
Copy pathpackage.json
File metadata and controls
78 lines (78 loc) · 2.2 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
{
"name": "@bnomei/emdash-actions",
"version": "0.4.1",
"description": "Native action surface for EmDash provider plugins.",
"keywords": [
"astro",
"cloudflare",
"cms",
"emdash",
"emdash-plugin",
"react",
"serverless",
"typescript"
],
"homepage": "https://github.com/bnomei/emdash-actions#readme",
"bugs": {
"url": "https://github.com/bnomei/emdash-actions/issues"
},
"license": "MIT",
"author": "Bruno Meilick <b@bnomei.com> (https://bnomei.com)",
"repository": {
"type": "git",
"url": "git+https://github.com/bnomei/emdash-actions.git"
},
"files": [
"dist"
],
"type": "module",
"sideEffects": false,
"main": "./dist/index.mjs",
"types": "./dist/index.d.mts",
"exports": {
".": {
"types": "./dist/index.d.mts",
"import": "./dist/index.mjs"
},
"./admin": {
"types": "./dist/admin.d.mts",
"import": "./dist/admin.mjs"
}
},
"publishConfig": {
"access": "public"
},
"scripts": {
"build": "vp pack src/index.ts src/admin.tsx --format esm --dts --clean --tsconfig tsconfig.json",
"check": "vp check .",
"pack:check": "vp pack src/index.ts src/admin.tsx --format esm --dts --clean --tsconfig tsconfig.json --publint",
"prepack": "npm run build",
"prepublishOnly": "npm run check && npm run typecheck && npm run pack:check && npm run types:check",
"typecheck": "tsc --noEmit",
"types:check": "attw --pack . --profile esm-only --no-summary",
"test": "vp test run test/*.test.ts && tsc -p test/tsconfig.json && npm run build && node --test test/*.test.mjs tests/*.test.mjs"
},
"devDependencies": {
"@arethetypeswrong/cli": "^0.18.3",
"@cloudflare/kumo": "^2.5.2",
"@phosphor-icons/react": "^2.1.10",
"@types/react": "^19.2.17",
"@types/react-dom": "^19.2.3",
"emdash": "^0.19.0",
"publint": "^0.3.21",
"react": "^19.2.7",
"react-dom": "^19.2.7",
"typescript": "^6.0.3",
"vite-plus": "^0.1.24"
},
"peerDependencies": {
"@cloudflare/kumo": "^2.5.0",
"@phosphor-icons/react": "^2.1.10",
"emdash": ">=0.17.0",
"react": "^18.0.0 || ^19.0.0",
"react-dom": "^18.0.0 || ^19.0.0"
},
"engines": {
"node": ">=22.12.0"
}
}