-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
48 lines (48 loc) · 1.16 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": "angular-snowpack-plugin",
"version": "2.3.1",
"description": "Snowpack Plugin for angular projects",
"main": "dist/index.js",
"repository": {
"type": "git",
"url": "https://github.com/SilverMira/angular-snowpack-plugin.git"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "tsc",
"build-hmr-accept": "tsc vendor/hmr/hmr-accept.ts --module esnext --moduleResolution node --declaration",
"dev": "tsc --watch"
},
"author": "PhantasmalMira",
"license": "ISC",
"dependencies": {},
"devDependencies": {
"@angular/compiler": "^11.0.5",
"@angular/compiler-cli": "^11.0.5",
"@angular/core": "^11.0.5",
"rxjs": "^6.6.3",
"snowpack": "^3.0.10",
"typescript": "4.0"
},
"peerDependencies": {
"@angular/compiler": "*",
"@angular/compiler-cli": "*",
"@angular/core": "*",
"rxjs": "*",
"snowpack": ">=3.0",
"typescript": "*"
},
"files": [
"dist/**",
"vendor/**"
],
"exports": {
".": {
"default": "./dist/index.js"
},
"./vendor/hmr/hmr-accept": "./vendor/hmr/hmr-accept.js"
},
"bin": {
"ngsnow": "./dist/ngsnow.js"
}
}