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