-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
47 lines (47 loc) · 1.01 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
{
"name": "solid2angular",
"version": "1.0.4",
"description": "A simple library for using SolidJS components in AngularJS applications.",
"type": "module",
"main": "dist/index.js",
"types": "dist/index.d.ts",
"files": [
"index.js",
"index.js.map",
"index.d.ts",
"README.md",
"LICENSE",
"package.json"
],
"scripts": {
"build": "tsc",
"prepack": "npm run build",
"test": "vitest"
},
"repository": {
"type": "git",
"url": "git+https://github.com/zenshixd/solid2angular.git"
},
"keywords": [
"solid",
"angularjs",
"component",
"jsx"
],
"author": "zenshixd",
"license": "GPL-3.0-or-later",
"bugs": {
"url": "https://github.com/zenshixd/solid2angular/issues"
},
"homepage": "https://github.com/zenshixd/solid2angular#readme",
"devDependencies": {
"@types/angular": "^1.8.9",
"prettier": "^3.2.5",
"solid-js": "^1.8.15",
"typescript": "^5.4.2"
},
"peerDependencies": {
"solid-js": "*",
"angular": ">=1.5.0"
}
}