-
Notifications
You must be signed in to change notification settings - Fork 4
/
package.json
43 lines (43 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
{
"name": "endorphin",
"version": "0.11.0",
"description": "Component-based UI rendering library",
"main": "./runtime.js",
"module": "./runtime.js",
"types": "./runtime.d.ts",
"scripts": {
"build": "npm run build:runtime && npm run build:compiler",
"build:runtime": "tsc -p .",
"build:compiler": "tsc -p ./tsconfig.compiler.json",
"test": "lerna run test",
"prepare": "npm run build"
},
"dependencies": {
"@endorphinjs/postcss-plugin": "^1.1.2",
"@endorphinjs/template-compiler": "^0.11.0",
"@endorphinjs/template-runtime": "^0.11.0",
"postcss": "^8.4.18"
},
"devDependencies": {
"@types/mocha": "^9.0.0",
"@types/node": "^16.4.11",
"lerna": "^4.0.0",
"typescript": "^4.3.5"
},
"repository": {
"type": "git",
"url": "git+https://github.com/endorphinjs/endorphin.git"
},
"keywords": [
"front-end",
"endorphin",
"endorphinjs",
"ui"
],
"author": "Sergey Chikuyonok <[email protected]>",
"license": "Apache-2.0",
"bugs": {
"url": "https://github.com/endorphinjs/endorphin/issues"
},
"homepage": "https://github.com/endorphinjs/endorphin#readme"
}