-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 917 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
{
"name": "@alinea/suite",
"version": "0.5.0",
"license": "MIT",
"types": "./src/suite.d.ts",
"type": "module",
"files": ["./dist", "./src"],
"devDependencies": {
"@jsr/std__assert": "^0.225.2",
"@types/bun": "latest",
"typescript": "^5.0.0"
},
"scripts": {
"build": "bun build src/suite.deno.js --outdir=dist --minify",
"test": "node --test && deno test && bun test",
"deploy": "npm publish && npx jsr publish",
"prepublishOnly": "bun run build"
},
"publishConfig": {
"access": "public"
},
"exports": {
".": {
"deno": "./dist/suite.deno.js",
"bun": "./src/suite.bun.js",
"node": "./src/suite.node.js",
"types": "./src/suite.d.ts"
},
"./package.json": "./package.json"
},
"imports": {
"#suite": {
"bun": "./src/suite.bun.js",
"node": "./src/suite.node.js",
"types": "./src/suite.d.ts"
}
}
}