-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
53 lines (53 loc) · 1.14 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
{
"name": "hanami-assets",
"version": "2.2.1",
"type": "module",
"description": "Hanami assets management via Esbuild",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"scripts": {
"build": "tsc",
"test": "jest"
},
"keywords": [
"hanami",
"assets",
"web",
"build",
"esbuild",
"plugin"
],
"author": "Hanami Team",
"license": "MIT",
"homepage": "https://hanamirb.org",
"repository": {
"type": "git",
"url": "git+https://github.com/hanami/assets-js.git"
},
"bugs": {
"url": "https://github.com/hanami/assets-js/issues"
},
"funding": {
"url": "https://github.com/sponsors/hanami"
},
"devDependencies": {
"@jest/globals": "^29.6.1",
"@types/fs-extra": "^11.0.1",
"@types/jest": "^29.5.3",
"@types/node": "^20.4.5",
"@types/react": "^18.2.16",
"@types/react-dom": "^18.2.7",
"jest": "^29.6.1",
"prettier": "^3.1.0",
"react": "^18.2.0",
"react-dom": "^18.2.0",
"ts-jest": "^29.1.1",
"ts-node": "^10.9.1",
"typescript": "^5.1.6"
},
"dependencies": {
"esbuild": "^0.19.0",
"fs-extra": "^11.1.0",
"glob": "^10.3.3"
}
}