@rkticket/common 1.0.0 → 1.0.3
Sign up to get free protection for your applications and to get access to all the features.
- package/build/index.d.ts +7 -0
- package/build/index.js +9 -0
- package/package.json +14 -4
package/build/index.d.ts
ADDED
package/build/index.js
ADDED
package/package.json
CHANGED
@@ -1,12 +1,22 @@
|
|
1
1
|
{
|
2
2
|
"name": "@rkticket/common",
|
3
|
-
"version": "1.0.
|
4
|
-
"main": "index.js",
|
3
|
+
"version": "1.0.3",
|
4
|
+
"main": "./build/index.js",
|
5
|
+
"types": "./build/index.d.ts",
|
6
|
+
"files": [
|
7
|
+
"build/**/*"
|
8
|
+
],
|
5
9
|
"scripts": {
|
6
|
-
"
|
10
|
+
"clean": "del ./build/*",
|
11
|
+
"build": "npm run clean && tsc",
|
12
|
+
"pub": "git add . && git commit -m \"Updates\" && npm version patch && npm run build && npm publish"
|
7
13
|
},
|
8
14
|
"keywords": [],
|
9
15
|
"author": "",
|
10
16
|
"license": "ISC",
|
11
|
-
"description": ""
|
17
|
+
"description": "",
|
18
|
+
"devDependencies": {
|
19
|
+
"del-cli": "^6.0.0",
|
20
|
+
"typescript": "^5.6.3"
|
21
|
+
}
|
12
22
|
}
|