-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathpackage.json
92 lines (92 loc) · 2.22 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
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
{
"name": "@inkline/paper",
"description": "Paper is a unified interface for defining components for Vue and React using a single code base.",
"version": "1.5.0",
"author": "Alex Grozav <[email protected]>",
"scripts": {
"bootstrap": "lerna bootstrap",
"pre": "lerna run pre",
"build": "rimraf lib && lerna run build",
"postbuild": "ts-node scripts/postbuild.ts",
"test": "lerna run test",
"prerelease": "npm-run-all test build",
"release": "np",
"postrelease": "ts-node scripts/postrelease.ts",
"postversion": "ts-node scripts/postversion.ts"
},
"devDependencies": {
"@types/node": "17.0.23",
"@types/shelljs": "0.8.11",
"@typescript-eslint/eslint-plugin": "5.13.0",
"@typescript-eslint/parser": "5.13.0",
"eslint": "8.10.0",
"eslint-config-standard": "16.0.3",
"eslint-plugin-import": "2.25.4",
"eslint-plugin-node": "11.1.0",
"eslint-plugin-promise": "6.0.0",
"lerna": "^4.0.0",
"np": "7.6.0",
"npm-run-all": "4.1.5",
"rimraf": "3.0.2",
"shelljs": "0.8.5",
"ts-node": "10.7.0",
"tsconfig-paths": "3.13.0",
"typescript": "4.6.2",
"vitest": "0.5.9"
},
"main": "index.cjs",
"module": "index.mjs",
"jsdelivr": "index.cjs",
"unpkg": "index.cjs",
"types": "index.d.ts",
"files": [
"**/*"
],
"exports": {
"./react": {
"require": "./react/index.cjs",
"import": "./react/index.mjs",
"types": "./react/index.d.ts"
},
"./vue": {
"require": "./vue/index.cjs",
"import": "./vue/index.mjs",
"types": "./vue/index.d.ts"
},
".": {
"require": "./index.cjs",
"import": "./index.mjs",
"types": "./index.d.ts"
},
"./*": "./*"
},
"funding": {
"type": "github",
"url": "https://github.com/sponsors/alexgrozav"
},
"bugs": {
"url": "https://github.com/inkline/paper/issues"
},
"homepage": "https://inkline.io",
"keywords": [
"inkline",
"react",
"reactjs",
"vue",
"vuejs",
"ui",
"ux",
"dx",
"components",
"library",
"framework",
"typescript",
"javascript",
"front end"
],
"license": "ISC",
"repository": {
"type": "git",
"url": "git+https://github.com/inkline/paper.git"
}
}