@ray-js/env 1.4.0-alpha.5 → 1.4.0-alpha.7
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 +14 -14
package/package.json
CHANGED
|
@@ -1,37 +1,37 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@ray-js/env",
|
|
3
|
-
"version": "1.4.0-alpha.
|
|
3
|
+
"version": "1.4.0-alpha.7",
|
|
4
4
|
"description": "Ray runtime environment",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ray"
|
|
7
7
|
],
|
|
8
|
+
"repository": {},
|
|
8
9
|
"license": "MIT",
|
|
10
|
+
"maintainers": [
|
|
11
|
+
{
|
|
12
|
+
"name": "tuyafe",
|
|
13
|
+
"email": "tuyafe@tuya.com"
|
|
14
|
+
}
|
|
15
|
+
],
|
|
9
16
|
"main": "cjs/index.js",
|
|
10
17
|
"module": "esm/index.js",
|
|
11
18
|
"files": [
|
|
12
19
|
"cjs",
|
|
13
20
|
"esm"
|
|
14
21
|
],
|
|
15
|
-
"publishConfig": {
|
|
16
|
-
"access": "public",
|
|
17
|
-
"registry": "https://registry.npmjs.org"
|
|
18
|
-
},
|
|
19
22
|
"scripts": {
|
|
20
|
-
"clean": "rm -rf cjs esm",
|
|
21
23
|
"build": "yarn build:cjs && yarn build:esm",
|
|
22
24
|
"build:cjs": "tsc -p ./tsconfig.build.json --target es5 --module commonjs --outDir cjs",
|
|
23
25
|
"build:esm": "tsc -p ./tsconfig.build.json --target es6 --module esnext --outDir esm",
|
|
26
|
+
"clean": "rm -rf cjs esm",
|
|
24
27
|
"watch": "concurrently 'yarn build:cjs --watch' 'yarn build:esm --watch'"
|
|
25
28
|
},
|
|
26
|
-
"maintainers": [
|
|
27
|
-
{
|
|
28
|
-
"name": "tuyafe",
|
|
29
|
-
"email": "tuyafe@tuya.com"
|
|
30
|
-
}
|
|
31
|
-
],
|
|
32
29
|
"devDependencies": {
|
|
33
30
|
"concurrently": "^7.6.0"
|
|
34
31
|
},
|
|
35
|
-
"
|
|
36
|
-
|
|
32
|
+
"publishConfig": {
|
|
33
|
+
"access": "public",
|
|
34
|
+
"registry": "https://registry.npmjs.org"
|
|
35
|
+
},
|
|
36
|
+
"gitHead": "14cb935df10f020e714b44bb41d4899646db751c"
|
|
37
37
|
}
|