notations 0.0.66 → 0.0.67

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.
Files changed (2) hide show
  1. package/README.md +4 -0
  2. package/package.json +5 -7
package/README.md CHANGED
@@ -6,6 +6,10 @@ Notations is a Typescript library for rendering Carnatic music. Notations comes
6
6
  1. An API for representing and rendering carnatic music.
7
7
  2. A DSL and an accompanying parser for representing music in a simpler and intuitive way.
8
8
 
9
+ ## Documentation
10
+
11
+ 📚 **[Full Documentation](https://panyam.github.io/notations/)** - Tutorials, API reference, cookbook examples, and more.
12
+
9
13
  # Getting Started
10
14
 
11
15
  ## Installation
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "notations",
3
- "version": "0.0.66",
3
+ "version": "0.0.67",
4
4
  "author": "Sriram Panyam",
5
5
  "description": "A package for modelling, parsing, laying out carnatic musical notation",
6
6
  "homepage": "https://github.com/panyam/notations#readme",
@@ -75,6 +75,9 @@
75
75
  "lintfix",
76
76
  "test"
77
77
  ],
78
+ "directories": {
79
+ "lib": "lib"
80
+ },
78
81
  "scripts": {
79
82
  "clean": "rm -Rf lib && jest --clearCache && rm -rf static/lib",
80
83
  "builddocs": "npx typedoc",
@@ -86,13 +89,8 @@
86
89
  "lintfix": "eslint 'src/**/*.ts' --quiet --fix --resolve-plugins-relative-to .",
87
90
  "format": "prettier --write \"src/**/*.ts\" \"src/**/*.js\"",
88
91
  "precommit-msg": "echo 'Pre-commit checks...' && exit 0",
89
- "prepare": "npm run build",
90
- "prepublishOnly": "echo prepublishOnly...",
91
92
  "preversion": "npm run build && npm run lintfix",
92
93
  "version": "git add -A src",
93
94
  "postversion": "git push && git push --tags"
94
- },
95
- "directories": {
96
- "lib": "lib"
97
95
  }
98
- }
96
+ }