-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
34 lines (34 loc) · 1.29 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
{
"private": true,
"name": "embellish",
"version": "0.0.0",
"description": "A lightweight styling primitive, powered entirely by CSS and inline styles",
"repository": {
"type": "git",
"url": "git+https://github.com/embellishing/embellish.git"
},
"author": "Nick Saunders",
"license": "MIT",
"packageManager": "[email protected]",
"type": "module",
"devDependencies": {
"@changesets/cli": "^2.27.1",
"@eslint/js": "^9.3.0",
"@microsoft/api-documenter": "^7.25.3",
"eslint": "^8.57.0",
"eslint-plugin-import": "^2.29.1",
"eslint-plugin-simple-import-sort": "^12.1.0",
"globals": "^15.3.0",
"prettier": "^3.2.5",
"typescript": "^5.4.5",
"typescript-eslint": "^7.9.0"
},
"scripts": {
"ci:readme": "node -e \"require('fs').writeFileSync('./packages/react/README.md', require('fs').readFileSync('./README.md', 'utf8').replace(/<\\!-- npm-remove -->[\\S\\s]*<\\!-- \\/npm-remove -->/gm, ''))\"",
"ci:publish": "pnpm ci:readme && pnpm publish -r --access public --no-git-checks && changeset tag",
"ci:version": "changeset version && pnpm install --no-frozen-lockfile",
"check": "eslint . && prettier --check .",
"docs": "pnpm -r api && api-documenter markdown -i temp -o docs/api",
"fix": "eslint --fix . && prettier --write ."
}
}