@quicktvui/tv-ad-unlock 1.1.0 → 1.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/package.json +8 -7
package/package.json
CHANGED
|
@@ -1,12 +1,18 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@quicktvui/tv-ad-unlock",
|
|
3
|
-
"version": "1.1.
|
|
3
|
+
"version": "1.1.1",
|
|
4
4
|
"description": "TV广告解锁组件 - 用于QuickTVUI框架的电视端广告解锁功能",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
7
7
|
"files": [
|
|
8
8
|
"dist"
|
|
9
9
|
],
|
|
10
|
+
"scripts": {
|
|
11
|
+
"build": "pnpm run build:js && pnpm run build:dts",
|
|
12
|
+
"build:js": "rollup -c rollup.config.mjs",
|
|
13
|
+
"build:dts": "tsc -p tsconfig.build.json --emitDeclarationOnly --outDir dist",
|
|
14
|
+
"prepublishOnly": "pnpm run build"
|
|
15
|
+
},
|
|
10
16
|
"keywords": [
|
|
11
17
|
"quicktvui",
|
|
12
18
|
"tv",
|
|
@@ -37,10 +43,5 @@
|
|
|
37
43
|
"repository": {
|
|
38
44
|
"type": "git",
|
|
39
45
|
"url": ""
|
|
40
|
-
},
|
|
41
|
-
"scripts": {
|
|
42
|
-
"build": "pnpm run build:js && pnpm run build:dts",
|
|
43
|
-
"build:js": "rollup -c rollup.config.mjs",
|
|
44
|
-
"build:dts": "tsc -p tsconfig.build.json --emitDeclarationOnly --outDir dist"
|
|
45
46
|
}
|
|
46
|
-
}
|
|
47
|
+
}
|