-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathpackage.json
More file actions
46 lines (46 loc) · 1.19 KB
/
package.json
File metadata and controls
46 lines (46 loc) · 1.19 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
{
"name": "tailwindcss-opentype-monorepo",
"version": "0.0.0",
"private": true,
"homepage": "https://tailwindcss-opentype.netlify.app",
"repository": "stormwarning/tailwindcss-opentype",
"license": "ISC",
"author": "Jeff Nelson (https://tidaltheory.io)",
"type": "module",
"scripts": {
"build": "pnpm run -F './plugin' build",
"build:docs": "pnpm run -F './docs' build",
"changeset": "changeset add",
"dev": "pnpm run -F './docs' dev",
"prepare": "husky",
"release": "npm run build && changeset publish",
"test": "pnpm run -F './plugin' test"
},
"lint-staged": {
"*.{js,cjs,ts}": [
"eslint --fix",
"prettier --write"
],
"package.json": "prettier --write"
},
"devDependencies": {
"@changesets/cli": "2.29.7",
"@types/node": "22.13.10",
"@zazen/changesets-changelog": "2.0.3",
"@zazen/eslint-config": "6.10.0",
"@zazen/prettier-config": "1.1.3",
"eslint": "8.57.1",
"eslint-import-resolver-node": "0.3.9",
"husky": "9.1.7",
"lint-staged": "15.5.0",
"npm-run-all": "4.1.5",
"prettier": "3.6.2",
"prettier-plugin-jinja-template": "2.1.0",
"typescript": "5.8.2",
"vitest": "3.0.8"
},
"packageManager": "pnpm@10.6.3",
"engines": {
"node": ">=16"
}
}