@gobstones/gobstones-scripts
Version:
Scripts to abstract away build configuration of Gobstones Project's libraries and modules.
51 lines (50 loc) • 1.48 kB
JSON
{
"name": "@gobstones/<library-name>",
"version": "0.1.0",
"description": "A New Gobstones Project Library",
"repository": "https://github.com/gobstones/<library-name>",
"homepage": "https://gobstones.github.io/<library-name>",
"author": "John Doe <john.doe@gmail.com>",
"license": "AGPL-3.0",
"keywords": ["Gobstones", "Library", "Keywords"],
"main": "./dist/cjs/index.cjs",
"module": "./dist/esm/index.mjs",
"typings": "./dist/esm/typings/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/esm/typings/index.d.ts",
"default": "./dist/esm/index.mjs"
},
"require": {
"types": "./dist/cjs/typings/index.d.ts",
"default": "./dist/cjs/index.cjs"
}
}
},
"typesVersions": {
"*": {
"*": ["./dist/esm/typings/index.d.ts"]
}
},
"packageManager": "npm@10.1.0",
"scripts": {
"prepare": "is-ci || husky install",
"prepack": "npm start build",
"start": "gobstones-scripts run",
"gbs": "gobstones-scripts"
},
"config": {
"gobstones-scripts": {
"type": "Library",
"manager": "npm"
}
},
"dependencies": {
"@gobstones/gobstones-core": "^0.5.5"
},
"devDependencies": {
"@gobstones/gobstones-scripts": "^0.9.3",
"husky": "^8.0.2"
}
}