@donotuse/apple-utils 2.1.15-rc.3
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/LICENSE +21 -0
- package/README.md +3 -0
- package/bin.js +5 -0
- package/build/index.d.ts +2 -0
- package/build/index.js +1 -0
- package/package.json +40 -0
- package/ts-declarations/expo__app-store/app-store.d.ts +5497 -0
- package/ts-declarations/expo__app-store/index.d.ts +4 -0
package/package.json
ADDED
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "@donotuse/apple-utils",
|
|
3
|
+
"version": "2.1.15-rc.3",
|
|
4
|
+
"main": "build",
|
|
5
|
+
"license": "MIT",
|
|
6
|
+
"scripts": {
|
|
7
|
+
"prepare": "yarn run clean && yarn run typegen && yarn run build:prod && yarn run append-types",
|
|
8
|
+
"lint": "eslint . --ext .ts",
|
|
9
|
+
"watch": "yarn run build -w",
|
|
10
|
+
"test": "jest",
|
|
11
|
+
"build": "ncc build ./src/index.ts -o build/",
|
|
12
|
+
"build:prod": "ncc build ./src/index.ts -o build/ --minify --no-cache --no-source-map-register",
|
|
13
|
+
"clean": "rimraf ./build/",
|
|
14
|
+
"typegen": "tsc --declaration --emitDeclarationOnly --project ../app-store/ --outFile ./ts-declarations/expo__app-store/app-store.d.ts",
|
|
15
|
+
"append-types": "ts-node ./scripts/prepare.ts"
|
|
16
|
+
},
|
|
17
|
+
"bin": {
|
|
18
|
+
"apple-utils": "./bin.js"
|
|
19
|
+
},
|
|
20
|
+
"keywords": [],
|
|
21
|
+
"files": [
|
|
22
|
+
"ts-declarations",
|
|
23
|
+
"!*.tsbuildinfo",
|
|
24
|
+
"!*.DS_Store",
|
|
25
|
+
"bin.js",
|
|
26
|
+
"build"
|
|
27
|
+
],
|
|
28
|
+
"devDependencies": {
|
|
29
|
+
"@types/prompts": "^2.0.6",
|
|
30
|
+
"@types/terser": "^3.12.0",
|
|
31
|
+
"@vercel/ncc": "^0.36.1",
|
|
32
|
+
"commander": "^6.1.0",
|
|
33
|
+
"rimraf": "^3.0.2",
|
|
34
|
+
"terser": "^5.16.5",
|
|
35
|
+
"ts-node": "^9.0.0"
|
|
36
|
+
},
|
|
37
|
+
"publishConfig": {
|
|
38
|
+
"access": "public"
|
|
39
|
+
}
|
|
40
|
+
}
|