-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
68 lines (68 loc) · 1.88 KB
/
package.json
File metadata and controls
68 lines (68 loc) · 1.88 KB
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
{
"name": "communitils",
"description": "Breaking into open-source with a TypeScript utility package while inviting others to do the same.",
"version": "0.7.1",
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"import": "./dist/index.js",
"require": "./dist/index.cjs"
}
},
"scripts": {
"build": "tsdown",
"dev": "vitest",
"deps:check": "npx npm-check-updates",
"deps:upgrade": "npx npm-check-updates -u && npm install",
"clean": "node --experimental-strip-types scripts/clean.ts",
"clean:build": "npm run clean && npm run build -w src",
"init": "node --experimental-strip-types scripts/init.ts",
"prepare": "husky install",
"reinstall": "node --experimental-strip-types scripts/reinstall.ts && npm ci",
"test": "vitest --no-watch",
"*": "************************************",
"site:dev": "npm run start -w site",
"site:build": "npm run build -w site"
},
"devDependencies": {
"@types/shelljs": "^0.8.15",
"@typescript-eslint/eslint-plugin": "^6.20.0",
"@typescript-eslint/parser": "^6.20.0",
"eslint": "^8.56.0",
"eslint-config-prettier": "^9.1.0",
"husky": "^8.0.3",
"lint-staged": "^15.2.0",
"prettier": "3.2.4",
"shelljs": "^0.8.5",
"ts-node": "^10.9.2",
"tsdown": "^0.13.4",
"typescript": "^5.3.3",
"vitest": "^3.2.4"
},
"files": [
"dist"
],
"workspaces": [
"site"
],
"lint-staged": {
"*.{js,ts,tsx,css,md}": "prettier --write --ignore-unknown",
"*.{js,ts,tsx}": "eslint --fix"
},
"volta": {
"node": "22.12.0",
"npm": "10.9.0"
},
"keywords": [
"typescript",
"utils",
"open-source"
],
"homepage": "https://communitils.com",
"bugs": "https://github.com/michael-gee/communitils/issues",
"license": "MIT"
}