-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
45 lines (45 loc) · 1.03 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
42
43
44
45
{
"name": "@tsmodule/spinners",
"license": "MIT",
"version": "0.6.0",
"type": "module",
"types": "dist/index.d.ts",
"exports": {
"./package.json": "./package.json",
".": "./dist/index.js",
"./*": "./dist/*/index.js"
},
"devDependencies": {
"@tsmodule/log": "^2.1.5",
"@tsmodule/test": "^1.2.5",
"@tsmodule/tsmodule": "^41.23.0",
"@types/node": "^18.11.9",
"@typescript-eslint/eslint-plugin": "^5.44.0",
"@typescript-eslint/parser": "^5.44.0",
"cli-spinners": "^2.7.0",
"eslint": "^8.28.0",
"typescript": "^4.9.3"
},
"files": [
"dist"
],
"repository": {
"type": "git",
"url": "git+https://github.com/tsmodule/spinners.git"
},
"platform": "node",
"scripts": {
"dev": "tsmodule dev",
"build": "tsmodule build --standalone src/index.ts",
"test": "tsm-test",
"pretest": "yarn build",
"prepublishOnly": "yarn test",
"lint": "eslint src --fix"
},
"engines": {
"node": ">=14"
},
"dependencies": {
"@tsmodule/spinners": "^0.5.3"
}
}