-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
41 lines (41 loc) · 878 Bytes
/
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
{
"author": "padreramnt",
"description": "@st-lib/render element node state management helper",
"dependencies": {
"tslib": "^1.9.3"
},
"devDependencies": {
"rimraf": "^3.0.1",
"typescript": "^3.5.1"
},
"files": [
"lib"
],
"keywords": [
"st-lib",
"render",
"state"
],
"repository": {
"type": "git",
"url": "https://github.com/Padreramnt/st-lib--render-with-state"
},
"license": "MIT",
"main": "lib/index.js",
"module": "lib/index.js",
"name": "@st-lib/render-with-state",
"scripts": {
"build": "tsc -p ./tsconfig.json",
"prebuild": "rimraf -rf ./lib",
"prepublishOnly": "npm run build",
"prestart": "rimraf -rf ./lib",
"start": "tsc -p ./tsconfig.json -w",
"start:tsc": "tsc",
"test": "tsc -p ./tsconfig.json --noEmit"
},
"types": "lib/index.d.ts",
"version": "1.0.1",
"peerDependencies": {
"@st-lib/render": "^1.0.10"
}
}