Add existing to tracked
This commit is contained in:
+65
@@ -0,0 +1,65 @@
|
||||
{
|
||||
"name": "ktx-parse",
|
||||
"version": "1.1.0",
|
||||
"description": "KTX 2.0 (.ktx2) parser and serializer.",
|
||||
"type": "module",
|
||||
"sideEffects": false,
|
||||
"source": "./src/index.ts",
|
||||
"types": "./dist/index.d.ts",
|
||||
"main": "./dist/ktx-parse.cjs",
|
||||
"module": "./dist/ktx-parse.esm.js",
|
||||
"exports": {
|
||||
"types": "./dist/index.d.ts",
|
||||
"require": "./dist/ktx-parse.cjs",
|
||||
"default": "./dist/ktx-parse.modern.js"
|
||||
},
|
||||
"repository": "github:donmccurdy/ktx-parse",
|
||||
"author": "Don McCurdy <dm@donmccurdy.com>",
|
||||
"license": "MIT",
|
||||
"scripts": {
|
||||
"build": "microbundle --format cjs,esm,modern --no-compress --define PACKAGE_VERSION=$npm_package_version",
|
||||
"watch": "microbundle watch --format cjs,esm,modern --no-compress --define PACKAGE_VERSION=$npm_package_version",
|
||||
"test": "ava --no-worker-threads test/test.ts",
|
||||
"validate": "ava --no-worker-threads test/validate.ts",
|
||||
"coverage": "c8 --reporter=lcov --reporter=text ava --no-worker-threads test/test.ts --tap",
|
||||
"coverage:report": "c8 report --reporter=text-lcov > coverage/coverage.lcov",
|
||||
"lint": "biome check src test",
|
||||
"lint:ci": "biome ci src test",
|
||||
"clean": "rm -rf dist/* || true",
|
||||
"release": "yarn postversion:commit && yarn npm publish && yarn postversion:push",
|
||||
"prerelease": "yarn postversion:commit && yarn npm publish --tag alpha && yarn postversion:push",
|
||||
"postversion:commit": "git add -u && git commit -m \"chore(release): v$npm_package_version\" && git tag -a v$npm_package_version -m v$npm_package_version",
|
||||
"postversion:push": "git push && git push --tags && yarn coverage:report",
|
||||
"prepublish": "yarn lint && yarn test && yarn validate",
|
||||
"prepack": "yarn clean && yarn build"
|
||||
},
|
||||
"devDependencies": {
|
||||
"@biomejs/biome": "^1.9.4",
|
||||
"@types/node": "^24.0.3",
|
||||
"ava": "6.4.0",
|
||||
"c8": "10.1.3",
|
||||
"microbundle": "0.15.1",
|
||||
"typescript": "5.8.3"
|
||||
},
|
||||
"files": [
|
||||
"dist/",
|
||||
"src/",
|
||||
"README.md",
|
||||
"LICENSE",
|
||||
"package.json"
|
||||
],
|
||||
"browserslist": [
|
||||
"defaults",
|
||||
"not IE 11",
|
||||
"node >= 14"
|
||||
],
|
||||
"ava": {
|
||||
"extensions": {
|
||||
"ts": "module"
|
||||
},
|
||||
"nodeArguments": [
|
||||
"--experimental-strip-types"
|
||||
]
|
||||
},
|
||||
"packageManager": "yarn@4.9.2"
|
||||
}
|
||||
Reference in New Issue
Block a user