-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
48 lines (48 loc) · 1.18 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
{
"name": "@sujalchoudhari/solaris-ui",
"version": "1.0.1-alpha.4",
"description": "A UI framework to create HTML pages with just JavaScript.",
"main": "./dist/index.js",
"types": "./dist/index.d.ts",
"repository": "https://github.com/SujalChoudhari/SolarisUI.git",
"keywords": [
"Ui",
"solaris",
"websites"
],
"author": "Sujal Choudhari <[email protected]>",
"license": "MIT",
"scripts": {
"dev": "ts-node-dev src/index.ts",
"prebuild": "jest",
"build": "tsc",
"docs": "typedoc",
"prepublish": "tsc"
},
"dependencies": {
"colorette": "^2.0.19",
"htmlparser2": "^8.0.2",
"mustache": "^4.2.0",
"ts-node": "^10.9.1",
"typescript": "^5.0.2"
},
"devDependencies": {
"@babel/cli": "^7.21.0",
"@babel/core": "^7.21.4",
"@babel/preset-env": "^7.21.4",
"@babel/preset-typescript": "^7.21.4",
"@types/babel-core": "^6.25.7",
"@types/jest": "^29.5.0",
"@types/mustache": "^4.2.2",
"@types/node": "^18.15.3",
"babel-jest": "^29.5.0",
"jest": "^29.5.0",
"ts-node-dev": "^2.0.0",
"typedoc": "^0.23.28"
},
"jest": {
"testMatch": [
"<rootDir>/tests/**/*.test.ts"
]
}
}