-
-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathpackage.json
executable file
·49 lines (49 loc) · 1.27 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
{
"author": "Taufik Nurrohman",
"browser": "index.min.js",
"bugs": "https://github.com/taufik-nurrohman/text-editor/issues",
"dependencies": {
"@taufik-nurrohman/document": "*",
"@taufik-nurrohman/event": "*",
"@taufik-nurrohman/from": "*",
"@taufik-nurrohman/hook": "*",
"@taufik-nurrohman/is": "*",
"@taufik-nurrohman/pattern": "*",
"@taufik-nurrohman/to": "*"
},
"description": "A text selection range API written in pure JavaScript, for modern browsers.",
"devDependencies": {
"@taufik-nurrohman/factory": "*"
},
"exports": {
"import": "./index.mjs",
"require": "./index.js"
},
"files": [
"index.js",
"index.min.js",
"index.mjs"
],
"funding": {
"url": "https://paypal.me/tatautaufik"
},
"homepage": "https://taufik-nurrohman.js.org/text-editor",
"keywords": [
"editor",
"range",
"selection",
"text"
],
"license": "MIT",
"main": "index.js",
"module": "index.mjs",
"name": "@taufik-nurrohman/text-editor",
"repository": {
"type": "git",
"url": "git+https://github.com/taufik-nurrohman/text-editor.git"
},
"scripts": {
"pack": "pack --clean=false --from=.factory --js-format=umd --js-name=TextEditor --js-top='%(js.license)' --mjs=true --to=."
},
"version": "4.2.9"
}