29 lines
632 B
JSON
29 lines
632 B
JSON
{
|
|
"name": "@gaza/protocol",
|
|
"version": "0.1.0",
|
|
"private": true,
|
|
"type": "module",
|
|
"files": [
|
|
"dist"
|
|
],
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"import": "./dist/index.js"
|
|
},
|
|
"./fixtures": {
|
|
"types": "./dist/fixtures/index.d.ts",
|
|
"import": "./dist/fixtures/index.js"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"build": "tsc -p tsconfig.build.json",
|
|
"check": "tsc -p tsconfig.json --noEmit",
|
|
"test": "npm run build && tsc -p tsconfig.json && node --test dist-tests/test/**/*.test.js"
|
|
},
|
|
"devDependencies": {
|
|
"@types/node": "22.17.2",
|
|
"typescript": "5.9.2"
|
|
}
|
|
}
|