-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
34 lines (34 loc) · 804 Bytes
/
package.json
File metadata and controls
34 lines (34 loc) · 804 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
{
"name": "@starbeam-dev/core",
"version": "1.0.2",
"description": "The core of the build tooling for projects using starbeam-dev",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"scripts": {
"prepare": "rollup -c",
"test:lint": "eslint . --max-warnings 0",
"test:types": "tsc -b"
},
"devDependencies": {
"@starbeam-dev/eslint-plugin": "^1.0.3",
"@swc/core": "^1.3.92",
"@swc/helpers": "^0.5.3",
"@types/node": "^20.8.5",
"eslint": "^8.51.0",
"rollup": "^4.0.2",
"rollup-plugin-ts": "^3.4.5",
"typescript": "^5.2.2"
},
"pnpm": {
"peerDependencyRules": {
"allowedVersions": {
"rollup": "4"
}
}
}
}