1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "name": "strip-literal",
- "version": "0.4.2",
- "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.0"
- },
- "devDependencies": {
- "@antfu/eslint-config": "^0.26.3",
- "@antfu/ni": "^0.18.0",
- "@types/node": "^18.7.16",
- "bumpp": "^8.2.1",
- "eslint": "^8.23.0",
- "esmo": "^0.16.3",
- "pnpm": "^7.11.0",
- "rimraf": "^3.0.2",
- "three": "^0.144.0",
- "typescript": "^4.8.3",
- "unbuild": "^0.8.10",
- "vite": "^3.1.0",
- "vitest": "^0.23.2",
- "vue": "^3.2.39"
- }
- }
|