-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
33 lines (33 loc) · 907 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
{
"name": "@bscotch/pixel-checksum",
"version": "0.1.2",
"description": "",
"license": "MIT",
"author": "",
"repository": {
"type": "git",
"url": "https://github.com/bscotch/pixel-checksum"
},
"homepage": "https://github.com/bscotch/pixel-checksum",
"exports": {
"import": "./index.mjs",
"require": "./pixel-checksum.node",
"types": "./pixel-checksum.node.d.ts"
},
"main": "pixel-checksum.node",
"types": "pixel-checksum.node.d.ts",
"scripts": {
"build": "cargo-cp-artifact -nc pixel-checksum.node -- cargo build --message-format=json-render-diagnostics",
"build-debug": "npm run build --",
"build-release": "npm run build -- --release",
"test": "node index.test.js"
},
"devDependencies": {
"@types/node": "22.0.0",
"cargo-cp-artifact": "^0.1"
},
"packageManager": "pnpm@8.7.6",
"publishConfig": {
"access": "public"
}
}