-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
70 lines (70 loc) · 1.99 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
{
"name": "startler",
"type": "module",
"version": "0.0.15",
"private": false,
"description": "",
"author": "Anton Ödman <anton.odman@gmail.com>",
"license": "MIT",
"homepage": "https://github.com/banjo/startler#readme",
"repository": {
"type": "git",
"url": "git+https://github.com/banjo/startler.git"
},
"bugs": "https://github.com/banjo/startler/issues",
"keywords": [],
"sideEffects": false,
"main": "dist/index.js",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"bin": "dist/index.js",
"prettier": "@banjoanton/prettier-config",
"exports": {
".": {
"types": "./dist/index.d.ts",
"require": "./dist/index.cjs",
"import": "./dist/index.js"
}
},
"files": [
"dist/*"
],
"scripts": {
"build": "tsup",
"dev": "tsup --watch",
"lint": "eslint . --ext .ts --fix",
"prepublishOnly": "nr build",
"release": "bumpp && npm publish",
"start": "esno src/index.ts",
"test": "vitest --watch=false",
"test:dev": "vitest",
"typecheck": "tsc --noEmit",
"format": "npx prettier --write ."
},
"dependencies": {
"@banjoanton/replacer": "^0.0.2",
"all-node-versions": "^11.3.0",
"execa": "^7.0.0",
"picocolors": "^1.0.0"
},
"devDependencies": {
"@antfu/ni": "^0.20.0",
"@banjoanton/eslint-config": "^0.1.1",
"@banjoanton/prettier-config": "^0.1.1",
"@banjoanton/utils": "^0.1.35",
"@clack/prompts": "^0.4.3",
"@types/node": "^18.13.0",
"@typescript-eslint/parser": "^5.54.0",
"bumpp": "^8.2.1",
"cleye": "^1.3.2",
"eslint": "^8.34.0",
"esno": "^0.16.3",
"pnpm": "^7.27.0",
"prettier": "^2.8.4",
"tsup": "^6.6.3",
"type-fest": "^3.6.0",
"typescript": "^4.9.5",
"vite": "^4.1.2",
"vitest": "^0.28.5"
}
}