-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
39 lines (39 loc) · 933 Bytes
/
package.json
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
{
"name": "spawncamp",
"description": "A tiny library for userscripts that waits for elements to arrive in the DOM",
"version": "0.1.0",
"type": "module",
"module": "index.ts",
"license": "MIT",
"repository": "https://github.com/vaaski/spawncamp",
"homepage": "https://github.com/vaaski/spawncamp",
"author": {
"name": "vaaski",
"email": "[email protected]",
"url": "https://vaaski.dev"
},
"scripts": {
"format": "biome format --write",
"lint": "biome lint --write",
"build": "bun run build.ts",
"prepublishOnly": "bun run build.ts",
"test": "bun test"
},
"files": [
"dist"
],
"exports": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
},
"devDependencies": {
"@biomejs/biome": "1.8.3",
"@happy-dom/global-registrator": "^15.7.3",
"@sindresorhus/tsconfig": "^6.0.0",
"@types/bun": "latest",
"bun-plugin-dts": "^0.2.3"
},
"peerDependencies": {
"typescript": "^5.0.0"
}
}