-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
29 lines (29 loc) · 776 Bytes
/
package.json
File metadata and controls
29 lines (29 loc) · 776 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
{
"name": "plaxis",
"author": {
"name": "Can Vardar",
"url": "https://github.com/icanvardar",
"email": "ismailcanvardar@gmail.com"
},
"version": "0.1.2",
"type": "module",
"main": "out/index.js",
"module": "out/index.js",
"types": "out/index.d.ts",
"devDependencies": {
"@types/bun": "latest"
},
"peerDependencies": {
"typescript": "^5.0.0"
},
"scripts": {
"test": "bun test",
"coverage": "bun test --coverage",
"build": "bun run clean && bun run build.mjs && bun run typegen",
"typegen": "npx tsc --declaration --emitDeclarationOnly --outDir ./out",
"clean": "rm -rf ./out ./node_modules bun.lockb"
},
"files": [
"out"
]
}