codemirror-lang-macaulay2 0.1.0 → 0.1.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json CHANGED
@@ -1,21 +1,33 @@
1
1
  {
2
2
  "name": "codemirror-lang-macaulay2",
3
- "version": "0.1.0",
3
+ "version": "0.1.1",
4
4
  "description": "Macaulay2 language support for CodeMirror",
5
- "scripts": {
6
- "test": "mocha test/test.js",
7
- "prepare": "rollup -c",
8
- "demo": "npm run prepare && rollup -c demo-rollup.config.js && serve demo"
5
+ "keywords": ["codemirror", "language", "macaulay2"],
6
+ "author": "Doug Torrance",
7
+ "license": "MIT",
8
+ "homepage": "https://github.com/d-torrance/codemirror-lang-macaulay2",
9
+ "repository": {
10
+ "type": "git",
11
+ "url": "https://github.com/d-torrance/codemirror-lang-macaulay2"
12
+ },
13
+ "bugs": {
14
+ "url": "https://github.com/d-torrance/codemirror-lang-macaulay2/issues"
9
15
  },
10
- "type": "module",
11
16
  "main": "dist/index.cjs",
12
17
  "module": "dist/index.js",
18
+ "types": "dist/index.d.ts",
19
+ "type": "module",
13
20
  "exports": {
14
21
  "import": "./dist/index.js",
15
22
  "require": "./dist/index.cjs"
16
23
  },
17
- "types": "dist/index.d.ts",
18
24
  "sideEffects": false,
25
+ "files": [ "dist/" ],
26
+ "scripts": {
27
+ "test": "mocha test/test.js",
28
+ "prepare": "rollup -c",
29
+ "demo": "npm run prepare && rollup -c demo-rollup.config.js && serve demo"
30
+ },
19
31
  "dependencies": {
20
32
  "@codemirror/language": "^6.0.0",
21
33
  "@codemirror/legacy-modes": "^6.4.3",
@@ -33,7 +45,5 @@
33
45
  "rollup-plugin-ts": "^3.0.2",
34
46
  "serve": "^14.2.4",
35
47
  "typescript": "^4.3.4"
36
- },
37
- "keywords": ["codemirror", "language", "macaulay2"],
38
- "license": "MIT"
48
+ }
39
49
  }