-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
68 lines (68 loc) · 1.61 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
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "@dreamlab.gg/ui",
"version": "0.0.6",
"type": "module",
"main": "./dist/index.js",
"module": "./dist/index.js",
"types": "./dist/index.d.ts",
"exports": {
".": {
"import": {
"types": "./dist/index.d.ts",
"default": "./dist/index.js"
}
},
"./package.json": {
"import": "./package.json"
},
"./modules.json": {
"import": "./dist/modules.json"
},
"./dist/modules.json": {
"import": "./dist/modules.json"
},
"./dist/*": {
"import": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
},
"./*": {
"import": {
"types": "./dist/*.d.ts",
"default": "./dist/*.js"
}
}
},
"sideEffects": false,
"files": [
"dist"
],
"scripts": {
"build": "tsup",
"dev": "npm run build -- --watch",
"check": "tsc --noEmit --skipLibCheck",
"lint": "prettier --check . && eslint src --ext ts,tsx",
"format": "prettier --write . && eslint src --ext ts,tsx --fix",
"fmt": "npm run format",
"test": "npm run check && npm run lint",
"prepack": "npm run test && npm run build",
"preversion": "npm run test",
"postversion": "git push --follow-tags"
},
"repository": {
"type": "git",
"url": "git+https://github.com/WorldQL/dreamlab-ui.git"
},
"devDependencies": {
"@dreamlab.gg/core": "0.0.75",
"@luludev/eslint-config": "^0.5.3",
"@types/react": "^18.2.48",
"@types/react-dom": "^18.2.18",
"eslint": "^8.56.0",
"prettier": "^3.2.4",
"tsup": "^8.0.1",
"type-fest": "^4.10.2",
"typescript": "^5.3.3"
}
}