Time slots app prototype
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

63 lines
1.5 KiB

{
"name": "strip-literal",
"version": "1.0.0",
"packageManager": "pnpm@7.0.0",
"description": "Strip comments and string literals from JavaScript code",
"author": "Anthony Fu <anthonyfu117@hotmail.com>",
"license": "MIT",
"funding": "https://github.com/sponsors/antfu",
"homepage": "https://github.com/antfu/strip-literal#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/antfu/strip-literal.git"
},
"bugs": {
"url": "https://github.com/antfu/strip-literal/issues"
},
"keywords": [],
"sideEffects": false,
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.mjs"
}
},
"main": "./dist/index.cjs",
"module": "./dist/index.mjs",
"types": "./dist/index.d.ts",
"files": [
"dist"
],
"scripts": {
"build": "unbuild",
"dev": "unbuild --stub",
"lint": "eslint .",
"prepublishOnly": "nr build",
"release": "bumpp --commit --push --tag && npm publish",
"start": "esmo src/index.ts",
"test": "vitest",
"bench": "vitest bench",
"typecheck": "tsc --noEmit"
},
"dependencies": {
"acorn": "^8.8.1"
},
"devDependencies": {
"@antfu/eslint-config": "^0.30.1",
"@antfu/ni": "^0.18.5",
"@types/node": "^18.11.9",
"bumpp": "^8.2.1",
"eslint": "^8.27.0",
"esmo": "^0.16.3",
"pnpm": "^7.16.0",
"rimraf": "^3.0.2",
"three": "^0.146.0",
"typescript": "^4.8.4",
"unbuild": "^0.9.4",
"vite": "^3.2.3",
"vitest": "^0.25.2",
"vue": "^3.2.45"
}
}