-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
58 lines (58 loc) · 1.77 KB
/
package.json
File metadata and controls
58 lines (58 loc) · 1.77 KB
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
54
55
56
57
58
{
"name": "@angular-wave/angular.ts",
"description": "A modern, optimized and type-safe version of AngularJS",
"license": "MIT",
"version": "0.21.0",
"type": "module",
"main": "dist/angular-ts.esm.js",
"module": "dist/angular-ts.esm.js",
"browser": "dist/angular-ts.umd.js",
"types": "@types/namespace.d.ts",
"files": [
"@types",
"dist/",
"README.md",
"LICENSE"
],
"repository": {
"type": "git",
"url": "https://github.com/angular-wave/angular.ts.git"
},
"keywords": [
"AngularJS",
"AngularTS"
],
"scripts": {
"build": "rm -rf .build dist && ./node_modules/.bin/tsc --project tsconfig.build.json && ./node_modules/.bin/rollup -c && rm -rf .build",
"playwright": "./node_modules/.bin/playwright test",
"types": "rm -rf @types && ./node_modules/.bin/tsc --project tsconfig.types.json && npx prettier ./@types --write --cache --log-level=silent",
"prepare": "husky",
"prepack": "rm -rf .build dist @types && npm run build && npm run types"
},
"devDependencies": {
"@eslint/js": "^9.28.0",
"@playwright/test": "latest",
"@rollup/plugin-commonjs": "latest",
"@rollup/plugin-node-resolve": "latest",
"@rollup/plugin-terser": "latest",
"@types/jasmine": "latest",
"cssnano": "^7.1.1",
"eslint": "9.28.0",
"eslint-config-prettier": "^10.1.8",
"eslint-plugin-import": "^2.32.0",
"eslint-plugin-prettier": "^5.5.5",
"eslint-plugin-promise": "^7.2.1",
"express": "latest",
"globals": "^16.2.0",
"husky": "^9.1.7",
"jasmine-core": "latest",
"playwright": "latest",
"postcss": "^8.5.6",
"prettier": "latest",
"rollup": "latest",
"rollup-plugin-version-injector": "latest",
"typedoc": "^0.28.17",
"typescript": "latest",
"vite": "latest"
}
}