-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
42 lines (42 loc) · 984 Bytes
/
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
{
"name": "opstring",
"version": "0.5.1",
"description": "OpString is a JavaScript module for mapping and executing operations represented by character sequences.",
"license": "MIT",
"author": "meezwhite",
"type": "module",
"main": "index.js",
"files": [
"dist",
"index.js"
],
"scripts": {
"build:darwin": "mkdir -p dist; minify index.js > dist/opstring.js; cp LICENSE dist/opstring.js.LICENSE.txt"
},
"keywords": [
"javascript",
"operation-string",
"operation-sequence",
"character-sequence",
"creative-coding",
"operation",
"string",
"mapper",
"mapping",
"utf-8",
"utf-16",
"fxhash"
],
"repository": {
"type": "git",
"url": "git+https://github.com/meezwhite/OpString.git"
},
"bugs": {
"url": "https://github.com/meezwhite/OpString/issues"
},
"homepage": "https://github.com/meezwhite/OpString",
"devDependencies": {
"alpinejs": "^3.12.2",
"minify": "^9.2.0"
}
}