forked from unlight/tailwind-components
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
41 lines (41 loc) · 1.57 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
{
"name": "tailwind-components",
"scripts": {
"test:r": "mocha -r ts-node/register --no-timeouts src/**/*.spec.ts",
"test:w": "mocha -r ts-node/register --no-timeouts --watch-files src/**/*.ts --watch src/**/*.spec.ts",
"test:d": "node --inspect -r ts-node/register node_modules/mocha/bin/mocha --no-timeouts --watch-files src/**/*.ts --watch src/**/*.spec.ts",
"test:brk": "node --inspect-brk -r ts-node/register node_modules/mocha/bin/mocha --no-timeouts src/**/*.spec.ts",
"tscheck": "echo tscheck... && tsc --noEmit",
"tscheck:w": "npm run tscheck -- --watch",
"remark": "sh Taskfile remark_run",
"remark:update": "sh Taskfile remark_run --output",
"program": "ts-node src/program.ts",
"program:x": "ts-node src/program.ts --only=xxx",
"generate": "npm run json && npm run readme",
"json": "npm run program -- --format=json",
"readme": "ts-node src/readme-components.ts && npm run remark:update"
},
"devDependencies": {
"@types/lodash": "^4.14.202",
"@types/mocha": "^10.0.6",
"@types/node": "^20.11.19",
"@types/pluralize": "^0.0.33",
"@types/puppeteer": "^5.4.7",
"@types/string-similarity": "^4.0.2",
"@types/yargs": "^17.0.32",
"expect": "^29.7.0",
"lodash": "^4.17.21",
"mocha": "^10.3.0",
"pluralize": "^8.0.0",
"prettier": "^3.2.5",
"puppeteer": "^22.0.0",
"remark": "^15.0.1",
"remark-cli": "^12.0.0",
"remark-toc": "^9.0.0",
"string-similarity": "^4.0.4",
"ts-node": "^10.9.2",
"tslib": "^2.6.2",
"typescript": "^5.3.3",
"yargs": "^17.7.2"
}
}