-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
129 lines (129 loc) · 3.5 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
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
{
"name": "clipboard-parser",
"description": "A tool to read the clipboard and parse out the table data",
"version": "3.0.0",
"packageManager": "pnpm@8.6.1",
"main": "dist/index.cjs.js",
"module": "dist/index.esm-bundler.js",
"browser": "dist/index.esm-browser.js",
"unpkg": "dist/index.global.js",
"jsdelivr": "dist/index.global.js",
"types": "dist/index.d.ts",
"exports": {
".": {
"types": "./dist/index.d.ts",
"module": "./dist/index.esm-bundler.js",
"require": "./dist/index.cjs.js",
"import": "./dist/index.mjs"
},
"./*": "./*"
},
"directories": {
"dist": "dist",
"src": "src"
},
"files": [
"dist",
"typings"
],
"scripts": {
"build": "run-s clean build:{bundle,types} roll-types",
"build:bundle": "rollup -c build/rollup.config.ts --configPlugin @rollup/plugin-typescript",
"build:types": "tsc -p src/tsconfig.json",
"build:docs": "rm-all docs && typedoc && prettier --write \"**/*.md\"",
"deploy": "sh scripts/deploy.sh",
"roll-types": "api-extractor run && rm-all temp",
"watch": "pnpm build:bundle -w",
"pub": "tscjs scripts/publish",
"unpub": "tscjs scripts/unpublish",
"sync": "tscjs scripts/sync",
"workflow:publish-test": "zx scripts/workflow.mjs",
"clean": "rm-all dist es lib",
"dist": "run-s eslint prettier build",
"test-unit": "jest --filter ./scripts/filter-unit.js",
"jest": "cross-env NODE_OPTIONS=--experimental-vm-modules npx jest --coverage",
"coveralls": "cat coverage/lcov.info | ./node_modules/coveralls/bin/coveralls.js",
"eslint": "eslint --fix .",
"prettier": "prettier --write \"**/*.{js,ts,jsx,tsx,yml,json,md}\""
},
"dependencies": {
"js-cool": "^4.7.0"
},
"devDependencies": {
"@babel/core": "^7.22.5",
"@babel/preset-env": "^7.22.5",
"@babel/preset-typescript": "^7.22.5",
"@eslint-sets/eslint-config-ts": "^5.4.0",
"@microsoft/api-extractor": "^7.36.0",
"@rollup/plugin-alias": "^5.0.0",
"@rollup/plugin-babel": "^6.0.3",
"@rollup/plugin-commonjs": "^25.0.2",
"@rollup/plugin-node-resolve": "^15.1.0",
"@rollup/plugin-terser": "^0.4.3",
"@rollup/plugin-typescript": "^11.1.1",
"@types/jest": "^29.5.2",
"@types/node": "^20.3.1",
"chalk": "^5.2.0",
"core-js": "^3.31.0",
"coveralls": "^3.1.1",
"cross-env": "^7.0.3",
"eslint": "^8.43.0",
"fast-glob": "^3.2.12",
"jest": "^29.5.0",
"load-yml": "^1.3.0",
"npm-run-all": "^4.1.5",
"prettier": "^2.8.8",
"prettier-config-common": "^1.4.0",
"reinstaller": "^3.0.0",
"rm-all": "^1.0.0",
"rollup": "^3.25.1",
"rollup-plugin-cleanup": "^3.2.1",
"rollup-plugin-filesize": "^10.0.0",
"rollup-plugin-inject-code": "^1.1.0",
"rollup-plugin-visualizer": "^5.9.2",
"ts-jest": "^29.1.0",
"tsnd": "^1.1.0",
"typedoc": "^0.24.8",
"typedoc-plugin-markdown": "^3.15.3",
"typescript": "^5.1.3",
"zx": "^7.2.2"
},
"engines": {
"node": ">=12.20"
},
"pnpm": {
"peerDependencyRules": {
"ignoreMissing": [
"tslib",
"webpack"
],
"allowedVersions": {
"rollup": ">=3.22.0",
"eslint": "^8.0.0"
}
}
},
"keywords": [
"clipboard-parser",
"clipboard",
"parser",
"clipboardData",
"table-data",
"docs-table",
"excel-table"
],
"license": "MIT",
"author": "saqqdy <https://github.com/saqqdy>",
"homepage": "https://github.com/saqqdy/clipboard-parser#readme",
"bugs": {
"url": "https://github.com/saqqdy/clipboard-parser/issues"
},
"repository": {
"type": "git",
"url": "git+https://github.com/saqqdy/clipboard-parser.git"
},
"publishConfig": {
"registry": "https://registry.npmjs.org",
"access": "public"
}
}