-
-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
executable file
·65 lines (65 loc) · 1.79 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
{
"name": "@thednp/shorty",
"version": "2.0.10",
"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 vitest vite",
"prepublishOnly": "pnpm up && pnpm lint && pnpm format && pnpm build && pnpm badges",
"test": "pnpm pre-test && vitest --config vitest.config.mts",
"test-ui": "pnpm pre-test && vitest --config vitest.config-ui.mts",
"clean-coverage": "rm -rf coverage .nyc_output",
"format": "deno fmt src",
"lint": "pnpm lint:ts && pnpm check:ts",
"lint:ts": "deno lint src",
"fix:ts": "deno lint src --fix",
"check:ts": "tsc -noEmit",
"build": "vite build"
},
"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": {
"@types/node": "^22.10.1",
"@vitest/browser": "^2.1.6",
"@vitest/coverage-istanbul": "^2.1.6",
"@vitest/ui": "^2.1.6",
"playwright": "^1.49.0",
"typescript": "^5.7.2",
"vite": "^5.4.11",
"vite-plugin-dts": "^4.3.0",
"vite-plugin-strip-comments": "^0.0.4",
"vitest": "^2.1.6"
},
"packageManager": "[email protected]",
"engines": {
"node": ">=16",
"pnpm": ">=8.6.0"
}
}