-
Notifications
You must be signed in to change notification settings - Fork 41
/
Copy pathpackage.json
34 lines (34 loc) · 933 Bytes
/
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
{
"name": "@uauth/common",
"version": "3.0.1",
"type": "module",
"exports": {
"import": "./build/index.module.mjs",
"require": "./build/index.cjs"
},
"main": "./build/index.cjs",
"unpkg": "./build/index.umd.js",
"module": "./build/index.module.mjs",
"source": "./src/index.ts",
"browser": "./build/index.umd.js",
"types": "./build/index.d.ts",
"files": [
"build"
],
"scripts": {
"build": "yarn export-version; microbundle",
"dev": "yarn export-version; microbundle watch",
"export-version": "node -p \"'export const VERSION = ' + JSON.stringify(require('./package.json').version) + ';'\" > ./src/version.ts",
"release": "../../scripts/release.sh"
},
"devDependencies": {
"@unstoppabledomains/resolution": "^9.2"
},
"peerDependencies": {
"@unstoppabledomains/resolution": "^9.2"
},
"publishConfig": {
"access": "public"
},
"amdName": "UAuthCommon"
}