-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
36 lines (36 loc) · 1 KB
/
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
{
"name": "@goliathbot/extend-prototypes",
"description": "Extend various prototypes to make things a bit simpler.",
"version": "1.0.1",
"main": "./dist/index.js",
"module": "./dist/index.mjs",
"types": "./dist/types.d.ts",
"type": "commonjs",
"scripts": {
"build": "tsup",
"prebuild": "tsc --noEmit --skipLibCheck",
"postbuild": "cross-os copytypes"
},
"keywords": [],
"author": "nickalfonso",
"license": "MIT",
"devDependencies": {
"@types/node": "^22.10.1",
"cross-os": "^1.5.0",
"tsup": "^8.3.5",
"typescript": "^5.7.2"
},
"cross-os": {
"copytypes": {
"win32": "xcopy /i /Y .\\src\\types.d.ts .\\dist",
"darwin": "cp ./src/types.d.ts ./dist"
}
},
"repository": {
"type": "git",
"url": "git+https://github.com/goliathbot/extend-prototypes.git"
},
"bugs": {
"url": "https://github.com/goliathbot/extend-prototypes/issues"
}
}