-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·42 lines (42 loc) · 969 Bytes
/
package.json
File metadata and controls
executable file
·42 lines (42 loc) · 969 Bytes
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
{
"name": "@dlightjs/components",
"version": "1.0.0-next.0",
"description": "DLight components library",
"author": {
"name": "IanDx",
"email": "iandxssxx@gmail.com"
},
"keywords": [
"dlight.js"
],
"license": "MIT",
"files": [
"dist"
],
"type": "module",
"main": "dist/index.cjs",
"module": "dist/index.js",
"typings": "dist/index.d.ts",
"scripts": {
"build": "node scripts/tsupBabel.js",
"dev": "vite",
"example": "./example.sh"
},
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@typescript-eslint/eslint-plugin": "^6.21.0",
"@typescript-eslint/parser": "^6.21.0",
"babel-preset-dlight": "1.0.0-next.0",
"cross-env": "^7.0.3",
"eslint": "^8.57.0",
"path": "^0.12.7",
"tsup": "^6.7.0",
"typescript": "^4.9.5",
"vite": "^4.5.2",
"vite-plugin-dlight": "1.0.0-next.0"
},
"dependencies": {
"@dlightjs/dlight": "1.0.0-next.1"
}
}