-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.06 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.06 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
{
"name": "tokey-root",
"private": true,
"type": "module",
"workspaces": [
"packages/*"
],
"scripts": {
"clean": "rimraf -g \"./packages/*/{dist,cjs,esm}\" \"./demos/dist\"",
"build": "tsc --build",
"watch": "npm run build -- -w",
"lint": "eslint",
"pretest": "npm run lint && npm run build",
"test": "mocha \"./packages/*/dist/test/**/*.spec.js\"",
"prettify": "prettier . --write",
"start": "node scripts/dev-server.js"
},
"devDependencies": {
"@eslint/js": "^10.0.1",
"@types/chai": "^5.2.3",
"@types/mocha": "^10.0.10",
"@types/node": "22",
"@webref/css": "^8.5.3",
"chai": "^6.2.2",
"dedent-js": "^1.0.1",
"eslint": "^10.2.1",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-no-only-tests": "^3.3.0",
"mocha": "12.0.0-beta-9.2",
"prettier": "^3.8.3",
"rimraf": "^6.1.3",
"typescript": "~6.0.3",
"typescript-eslint": "^8.58.2"
},
"engines": {
"node": ">=22"
},
"repository": "git@github.com:dazl-dev/tokey.git",
"author": "Dazl",
"license": "MIT"
}