84 lines
2.2 KiB
JSON
84 lines
2.2 KiB
JSON
{
|
|
"name": "@open-pencil/kiwi",
|
|
"version": "0.13.2",
|
|
"license": "MIT",
|
|
"type": "module",
|
|
"exports": {
|
|
".": {
|
|
"types": "./dist/index.d.ts",
|
|
"bun": "./src/index.ts",
|
|
"import": "./dist/index.js",
|
|
"default": "./dist/index.js"
|
|
},
|
|
"./schema-runtime": {
|
|
"types": "./dist/schema-runtime.d.ts",
|
|
"bun": "./src/schema-runtime/index.ts",
|
|
"import": "./dist/schema-runtime.js",
|
|
"default": "./dist/schema-runtime.js"
|
|
},
|
|
"./fig": {
|
|
"types": "./dist/fig.d.ts",
|
|
"bun": "./src/fig/index.ts",
|
|
"import": "./dist/fig.js",
|
|
"default": "./dist/fig.js"
|
|
},
|
|
"./fig/codec": {
|
|
"types": "./dist/fig/codec.d.ts",
|
|
"bun": "./src/fig/codec.ts",
|
|
"import": "./dist/fig/codec.js",
|
|
"default": "./dist/fig/codec.js"
|
|
},
|
|
"./fig/container": {
|
|
"types": "./dist/fig/container.d.ts",
|
|
"bun": "./src/fig/container.ts",
|
|
"import": "./dist/fig/container.js",
|
|
"default": "./dist/fig/container.js"
|
|
},
|
|
"./fig/guid": {
|
|
"types": "./dist/fig/guid.d.ts",
|
|
"bun": "./src/fig/guid.ts",
|
|
"import": "./dist/fig/guid.js",
|
|
"default": "./dist/fig/guid.js"
|
|
},
|
|
"./fig/parse": {
|
|
"types": "./dist/fig/parse.d.ts",
|
|
"bun": "./src/fig/parse.ts",
|
|
"import": "./dist/fig/parse.js",
|
|
"default": "./dist/fig/parse.js"
|
|
}
|
|
},
|
|
"main": "./dist/index.js",
|
|
"types": "./dist/index.d.ts",
|
|
"sideEffects": false,
|
|
"files": [
|
|
"dist",
|
|
"README.md"
|
|
],
|
|
"scripts": {
|
|
"build": "bunx tsdown --config tsdown.config.ts",
|
|
"check": "bun run typecheck && bun run test && bun run build && bun run smoke:dist",
|
|
"prepack": "bun run build",
|
|
"smoke:dist": "bun scripts/smoke-dist.ts",
|
|
"test": "bun test tests",
|
|
"typecheck": "bunx tsc --noEmit -p tsconfig.test.json"
|
|
},
|
|
"repository": {
|
|
"type": "git",
|
|
"url": "git+https://github.com/open-pencil/open-pencil.git",
|
|
"directory": "packages/kiwi"
|
|
},
|
|
"publishConfig": {
|
|
"access": "public",
|
|
"provenance": true
|
|
},
|
|
"dependencies": {
|
|
"fflate": "^0.8.2",
|
|
"fzstd": "^0.1.1"
|
|
},
|
|
"devDependencies": {
|
|
"@types/bun": "^1.3.14",
|
|
"tsdown": "^0.22.3",
|
|
"typescript": "~5.8.3"
|
|
}
|
|
}
|