-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
73 lines (73 loc) · 1.88 KB
/
Copy pathpackage.json
File metadata and controls
73 lines (73 loc) · 1.88 KB
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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "@arijs/frontend",
"version": "0.3.3",
"description": "Front-end utilities and patterns, components for use with VueJS",
"main": "./lib/index.js",
"exports": {
".": {
"import": "./src/index.mjs",
"require": "./lib/index.js"
},
"./client/*": {
"import": "./src/client/*.mjs",
"require": "./lib/client/*.js"
},
"./server/*": {
"import": "./src/server/*.mjs",
"require": "./lib/server/*.js"
},
"./isomorphic/*": {
"import": "./src/isomorphic/*.mjs",
"require": "./lib/isomorphic/*.js"
},
"./package.json": "./package.json"
},
"files": [
"src",
"lib",
"utils",
"vcomp"
],
"engines": {
"node": ">=22"
},
"scripts": {
"build": "node ./node_modules/@babel/cli/bin/babel.js src --out-dir lib --verbose",
"prepack": "npm run build",
"pretest": "npm run build",
"test": "node test/mjs/index.mjs && node test/cjs/index.cjs",
"testSeriesMjs": "node test/mjs/series/index.mjs",
"testSeries": "node test/mjs/series/index.mjs && node test/cjs/series/index.cjs",
"testXorRotateMjs": "node test/mjs/utils/xor-rotate.mjs",
"testClient": "npx http-server ./ -o /test/"
},
"repository": {
"type": "git",
"url": "git+ssh://git@github.com/arijs/front-end.git"
},
"bugs": {
"url": "https://github.com/arijs/front-end/issues"
},
"homepage": "https://github.com/arijs/front-end#readme",
"keywords": [
"frontend",
"components",
"vuejs"
],
"author": "AriJS",
"license": "MIT",
"devDependencies": {
"@arijs/babel-plugin-module-resolver": "^5.0.4-0.next",
"@arijs/babel-plugin-transform-modules-umd": "^0.1.5",
"@babel/cli": "^8.0.1",
"@babel/core": "^8.0.1",
"@babel/plugin-transform-class-properties": "^8.0.0",
"@babel/plugin-transform-export-namespace-from": "^8.0.1",
"@babel/plugin-transform-runtime": "^8.0.1",
"@babel/preset-env": "^8.0.2",
"dir-files": "^1.1.0"
},
"dependencies": {
"@babel/runtime": "^8.0.0"
}
}