-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.51 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.51 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
{
"name": "@adhesivejs/monorepo",
"type": "module",
"version": "0.7.9",
"private": true,
"packageManager": "pnpm@10.30.3",
"license": "MIT",
"repository": {
"type": "git",
"url": "git+https://github.com/adhesivejs/adhesive.git"
},
"engines": {
"node": "^20.19.0 || >=22.12.0"
},
"scripts": {
"build": "pnpm -r build",
"lint": "pnpm -r lint",
"playground:core": "pnpm --filter @adhesivejs/playground-core run dev",
"playground:react": "pnpm --filter @adhesivejs/playground-react run dev",
"playground:svelte": "pnpm --filter @adhesivejs/playground-svelte run dev",
"playground:vue": "pnpm --filter @adhesivejs/playground-vue run dev",
"release": "pnpm release:bump && pnpm release:prepare && pnpm release:publish",
"release:bump": "pnpm -r release:bump && pnpm build",
"release:prepare": "git add . && changelogen --release --push",
"release:publish": "pnpm -r release:publish",
"test": "pnpm build && pnpm lint && pnpm type-check && pnpm test:unit && pnpm test:publish",
"test:unit": "pnpm --filter @adhesivejs/test run test",
"test:publish": "pnpm -r test:publish",
"type-check": "pnpm -r type-check"
},
"devDependencies": {
"@arethetypeswrong/cli": "catalog:",
"@danielwaltz/eslint-config": "catalog:",
"@tsconfig/node24": "catalog:",
"@types/node": "catalog:",
"changelogen": "catalog:",
"eslint": "catalog:",
"prettier": "catalog:",
"publint": "catalog:",
"tsdown": "catalog:",
"typescript": "catalog:"
}
}