-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
53 lines (53 loc) · 1.6 KB
/
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
42
43
44
45
46
47
48
49
50
51
52
53
{
"private": false,
"name": "@cloudsponge/contact-picker-ts",
"version": "1.0.6",
"description": "MDN Contact Picker API Wrapper",
"main": "build/cjs/index.js",
"module": "build/esm/index.js",
"types": "build/types/index.d.ts",
"files": [
"src",
"build"
],
"repository": {
"type": "git",
"url": "git+https://github.com/cloudsponge/contact-picker-ts.git"
},
"exports": {
"require": "./build/cjs/index.js",
"import": "./build/esm/index.js"
},
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"clean": "rimraf build",
"declarations": "tsc -p tsconfig.json",
"build:esm": "BABEL_ENV=esmUnbundled babel src --extensions '.ts' --out-dir 'build/esm' --source-maps",
"build:cjs": "BABEL_ENV=cjs babel src --extensions '.ts' --out-dir 'build/cjs' --source-maps",
"build:bundles": "BABEL_ENV=esmBundled rollup -c",
"build": "npm run clean && npm run build:esm && npm run build:cjs && npm run build:bundles && npm run declarations"
},
"keywords": [
"contact",
"picker",
"cloudsponge",
"contacts",
"mobile"
],
"author": "Alfredo Ribeiro",
"license": "MIT",
"devDependencies": {
"@babel/cli": "^7.23.9",
"@babel/core": "^7.24.0",
"@babel/plugin-transform-typescript": "^7.23.6",
"@babel/preset-env": "^7.24.0",
"@babel/preset-typescript": "^7.23.3",
"@rollup/plugin-babel": "^6.0.4",
"@rollup/plugin-node-resolve": "^15.2.3",
"@rollup/plugin-terser": "^0.4.4",
"babel-cli": "^6.26.0",
"rimraf": "^5.0.5",
"rollup-plugin-terser": "^7.0.2",
"typescript": "^5.3.3"
}
}