forked from thednp/shorty
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
75 lines (75 loc) · 2.35 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
{
"name": "@thednp/shorty",
"version": "2.0.3",
"description": "TypeScript shorties for the web",
"source": "./src/index.ts",
"main": "./dist/shorty.js",
"module": "./dist/shorty.mjs",
"exports": {
".": {
"types": "./dist/shorty.d.ts",
"require": "./dist/shorty.cjs",
"import": "./dist/shorty.mjs"
}
},
"scripts": {
"pre-test": "pnpm clean-coverage",
"badges": "npx -p dependency-version-badge update-badge typescript prettier cypress eslint vite",
"prepublishOnly": "pnpm up && pnpm format && pnpm build && pnpm badges",
"test": "pnpm pre-test && npx cypress run",
"clean-coverage": "rimraf coverage .nyc_output",
"cypress": "pnpm pre-test && npx cypress open",
"coverage:report": "nyc report --reporter=lcov --reporter=json --reporter=text --reporter=json-summary",
"format": "prettier --write \"src/**/*.ts\"",
"lint:ts": "eslint -c .eslintrc.cjs --ext .ts src",
"fix:ts": "eslint -c .eslintrc.cjs --ext .ts src --fix",
"check:ts": "tsc -noEmit",
"build": "pnpm check:ts && pnpm lint:ts && vite build && pnpm dts",
"dts": "dts-bundle-generator --config ./dts.config.ts"
},
"publishConfig": {
"access": "public",
"registry": "https://registry.npmjs.org/"
},
"repository": {
"type": "git",
"url": "git+https://github.com/thednp/shorty.git"
},
"keywords": [
"shorty",
"javascript",
"typescript"
],
"author": "thednp",
"license": "MIT",
"bugs": {
"url": "https://github.com/thednp/shorty/issues"
},
"homepage": "https://github.com/thednp/shorty",
"devDependencies": {
"@bahmutov/cypress-esbuild-preprocessor": "^2.2.1",
"@cypress/code-coverage": "^3.12.44",
"@types/istanbul-lib-instrument": "^1.7.7",
"@types/node": "^20.14.11",
"@typescript-eslint/eslint-plugin": "^5.62.0",
"@typescript-eslint/parser": "^5.62.0",
"cypress": "^13.13.1",
"dts-bundle-generator": "^9.5.1",
"eslint": "^8.57.0",
"eslint-plugin-jsdoc": "^46.10.1",
"eslint-plugin-prefer-arrow": "^1.2.3",
"eslint-plugin-prettier": "^4.2.1",
"istanbul-lib-coverage": "^3.2.2",
"istanbul-lib-instrument": "^5.2.1",
"nyc": "^15.1.0",
"prettier": "^2.8.8",
"rimraf": "^5.0.9",
"typescript": "^5.5.3",
"vite": "^5.3.4"
},
"packageManager": "pnpm@8.6.12",
"engines": {
"node": ">=16",
"pnpm": ">=8.6.0"
}
}